/* 
*********** TABLE OF CONTENTS*********** 

1. MAIN SECTION
    1.1 ROOT
    1.2 BODY
    1.3 MARGIN - TOP
    1.4 MARGIN - BOTTOM
    1.5 MARGIN - HORIZONTAL
    1.6 MARGIN - VERTICAL
    1.7 PADDDING - TOP
    1.8 PADDDING - BOTTOM
    1.9 PADDDING - HORIZONTAL
    1.10 PADDDING - VERTICAL
    1.11 DISPLAY FLEX
2. NAVBAR
    2.1 WIDTH
    2.2 NAVIGATION OPTIONS
    2.3 ICON IMAGE
    2.4 BACKGROUND
    2.5 BORDER + TOGGLER
    2.6 CONTACT BUTTON
3. COVER IMAGE
    3.1 HERO CONTAINER
    3.2 CALL TO ACTION BUTTON
    3.3 SECTION CONTAINER
    3.4 CARD STYLE 1
4. CLIENT SECTION
    4.1 FEATURED CLIENT SECTION
    4.2 CLIENT CAROUSEL
3. MEDIA QUERIES
    3.1 MAX WIDTH: 992PX
    3.2 MIN WIDTH: 992PX - MAX WIDTH: 1200PX

*/

/***************************************/
/* MAIN SECTION */
/***************************************/

:root {
  --primary-color: #2c3237;
  --secondary-color: #535961;
  --text-color-primary: #2c3237;
  --text-hover-color-primary: #535961;
  --text-color-secondary: #ffffff;
  --text-hover-color-secondary: #f5efff;
  --text-highlighter: #cf0f47;
  --text-highlighter-2: #725cad;
  --heading-color: #192020;
  --number-color: #252b48;
  --icon-color: #61677a;
  --button-color: #192020;
  --icon-hover-color: #445069;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Cairo", sans-serif !important;
  font-size: 1.125rem;
  padding: 0rem;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  color: var(--heading-color);
}

p {
  color: var(--text-color-primary);
}

.gradient-bg {
  /* background: linear-gradient(to right, var(--text-color-primary), var(--text-hover-color-primary)); */
  background: linear-gradient(to bottom, #bdc3c7, #2c3e50);

}
.certificate-title{
      font-size: 20px;
    font-weight: 600;
}

.gradient-bg-tech {
    background: linear-gradient(to bottom, var(--text-color-primary), #555555);
}

img {
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
}

/***************************************/
/* NAVBAR */
/***************************************/

/* NAVBAR - WIDTH*/
.navbar-fixed {
  position: fixed;
  z-index: 9999;
  transition: 0.5s;
  width: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* NAVBAR - RESPONSIVE BEHAVIOR */
.navbar {
  min-height: 4.375rem;
  transition: all 0.3s ease;
  box-shadow: rgba(97, 103, 122, 0.5) 0px 2px 5px 2px;
}

.navbar-collapse {
  flex-grow: 1;
  align-items: center;
}

/* NAVBAR - NAVIGATION OPTIONS */
.navbar .navbar-nav .nav-link {
  margin-left: 1.5625rem;
  padding: 0.625rem 0;
  color: var(--text-color-primary);
  font-weight: 700;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--text-hover-color-primary);
  font-weight: 700;
}

/* NAVBAR - ICON IMAGE */
.navbar .navbar-brand img {
  margin-top: 0rem;
  width: 45%;
  height: 45%;
}

/* NAVBAR - BACKGROUND*/
.bg-navbar {
  background-image: linear-gradient(to right, #ffffff, #fbfbfb, #f7f7f7, #f4f4f4, #f0f0f0);
}

/* NAVBAR - BORDER + TOGGLER */
.navbar-light .navbar-toggler {
  border-color: transparent;
  color: var(--text-color-secondary);
  padding: 0.375rem 0.625rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.navbar-light .navbar-toggler:focus,
.navbar-light .navbar-toggler:active {
  box-shadow: none;
  outline: none;
}

.navbar-light .navbar-toggler:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-light .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='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* NAVBAR - CONTACT BUTTON */
.contact-btn {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0.3125rem;
  margin-left: 1.5625rem;
  padding: 0.625rem 1.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-color-secondary);
  background-color: var(--button-color);
  border: 0.0625rem solid rgba(72, 58, 160, 0.4);
  border-radius: 3.125rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.5s;
}

.contact-btn-hoverEffect {
  z-index: 1;
}

.contact-btn-hoverEffect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  right: 100%;
  bottom: 0;
  opacity: 0;
  background: transparent;
  box-sizing: border-box;
  transition: 0.5s all ease;
}

.contact-btn-hoverEffect:hover {
  color: var(--text-color-primary);
  font-weight: 700;
  border: 0.0625rem solid rgba(68, 74, 80, 0.5);
}

.contact-btn .fa-arrow-right {
  transform: rotate(315deg);
}

.contact-btn-hoverEffect:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
  background: var(--text-color-secondary);
  border-radius: 1.875rem;
  z-index: -1;
  transition: 0.5s all ease;
}

.contact-btn-hoverEffect:hover svg {
  transform: rotate(360deg);
  transition: 0.5s all ease;
}

/* NAVBAR - PRODUCTS DROPDOWN */
.products-dropdown {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Create invisible hover bridge between trigger and dropdown */
.products-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: -250px;
  transform: none;
  width: 50vw;
  max-width: 75rem;
  height: 0.5rem;
  background: transparent; /* Now completely invisible */
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  display: none;
}

.products-dropdown:hover::after {
  display: block;
  pointer-events: auto;
  opacity: 1;
}

.products-dropdown .dropdown-toggle {
  color: var(--text-color-primary);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.9375rem 1.5625rem; /* Increased padding for larger hover area */
  margin-left: 0rem; /* Reset margin since we have padding now */
  cursor: pointer;
  user-select: none;
  position: relative;
}

.products-dropdown .dropdown-toggle:hover {
  color: var(--text-hover-color-primary);
}

/* Remove Bootstrap dropdown arrow */
.products-dropdown .dropdown-toggle::after {
  display: none;
}

/* Force center positioning for dropdown - override any conflicts */
.products-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: -250px;
  transform: none;
  background: var(--text-color-secondary);
  border: 0.0625rem solid rgba(44, 50, 55, 0.1);
  border-radius: 0.75rem;
  box-shadow: 0 1.25rem 2.5rem rgba(44, 50, 55, 0.15);
  padding: 0;
  /* width: 90vw; */
  width:50vw;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, top 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  display: block;
}

.products-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.5rem);
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s ease, top 0.3s ease;
}

/* Fallback hover rule for immediate response */
.products-dropdown:hover .products-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.5rem);
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s ease, top 0.3s ease;
}

.dropdown-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625rem;
  padding: 2rem;
  max-width: 87.5rem;
  margin: 0 auto;
}

.product-item {
  transition: all 0.3s ease;
  border-radius: 0.9375rem;
  overflow: hidden;
  min-height: 20rem;
  position: relative;
}

.product-item:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(44, 50, 55, 0.3);
}

.product-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  text-align: left;
  padding: 0;
  text-decoration: none;
  color: white;
  border-radius: 0.9375rem;
  transition: all 0.3s ease;
  margin: 0;
  height: 100%;
  min-height: 20rem;
  box-sizing: border-box;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Background images for each product */
.product-link[href*="hrms.php"] {
  background-image: url("../img/products/hrms.png");
}

.product-link[href*="inj-konnect.php"] {
  background-image: url("../img/products/inj-konnect.png");
}

.product-link[href*="inj-ninja.php"] {
  background-image: url("../img/products/inj-ninja.png");
}

.product-link[href*="inj-dhwani.php"] {
  background-image: url("../img/products/inj-dhwani.png");
}

/* Dark overlay for better text contrast */
.product-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 0.9375rem;
  transition: all 0.3s ease;
}

.product-link:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.product-link:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-0.1875rem);
}

.product-image {
  display: none; /* Hide the image container since we're using background images */
}

.product-image img {
  display: none; /* Hide the actual images */
}

.product-info {
  position: relative;
  z-index: 2;
  padding: 1.125rem 0.6rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.1875rem);
  border-radius: 0 0 0.9375rem 0.9375rem;
  transition: all 0.3s ease;
  min-height: 245px;
}

.product-link:hover .product-info {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.25rem);
}

.product-info h5 {
  margin: 0 0 0.375rem 0;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  transition: all 0.3s ease;
  text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.8);
}

.product-info p {
    margin: 0 0 0.375rem 0;
    font-size: 1rem;
    color: white;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
    text-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.8);
}
.product-info .product-description {
  margin: 0;
  font-size: 0.94rem;
  color: white;
  font-weight: 400;
  line-height: 19px;
  transition: all 0.3s ease;
  text-shadow: 0.125rem 0.125rem 0.375rem rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.3rem;
  border-radius: 0.25rem;
  margin-top: 0.25rem;
}

.product-link:hover .product-info h5 {
  color: white;
  text-shadow: 0.1875rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.9);
}

.product-link:hover .product-info p {
  color: white;
  text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.9);
}

.product-link:hover .product-info .product-description {
  color: white;
  text-shadow: 0.125rem 0.125rem 0.5rem rgba(0, 0, 0, 0.9);
  background: rgba(0, 0, 0, 0.5);
}

.product-link:hover .product-info .product-description {
  opacity: 1;
}

/* Override Bootstrap dropdown positioning with higher specificity */
.navbar .dropdown-menu {
  position: static;
}

.navbar .products-dropdown .dropdown-menu,
.navbar .products-dropdown .products-dropdown-menu {
  position: absolute;
  right: -250px;
  width: 50vw;
}

/* Ensure no Bootstrap interference with higher specificity */
.navbar .products-dropdown .dropdown-menu.show,
.navbar .products-dropdown .products-dropdown-menu.show {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: -250px;
  left: auto;
  transform: none;
  width: 50vw;
}

/* Media Queries for Navbar - Organized in decreasing order */

/* Large screens and below (Bootstrap lg breakpoint) */
@media (min-width: 65.25rem) and (max-width: 74.9988rem) {
  .navbar .navbar-nav .nav-link {
    margin-left: 1.25rem;
    font-size: 1.125rem;
  }

  .navbar .navbar-brand img {
    width: 40%;
    height: 40%;
  }
  .contact-btn {
    margin-left: 1.25rem;
    padding: 0.5rem 1rem;
    font-size: 1.125rem;
  }

  .products-dropdown .dropdown-toggle {
    margin-left: 1.25rem;
  }

  .dropdown-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem;
    padding: 1.875rem;
  }

  /* Responsive dropdown positioning for large screens */
  .products-dropdown-menu {
    right: -150px;
    width: 60vw;
  }
  
  .navbar .products-dropdown .dropdown-menu,
  .navbar .products-dropdown .products-dropdown-menu {
    right: -150px;
    width: 60vw;
  }
  
  .navbar .products-dropdown .dropdown-menu.show,
  .navbar .products-dropdown .products-dropdown-menu.show {
    right: -150px;
    width: 60vw;
  }
}

/* Medium-large screens (991px to 1044px) - Fill the gap */
@media (min-width: 61.9375rem) and (max-width: 65.25rem) {
  .navbar .navbar-nav .nav-link {
    margin-left: 1rem;
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .navbar .navbar-brand img {
    width: 38%;
    height: 38%;
  }

  .contact-btn {
    margin-left: 1rem;
    padding: 0.5rem 0.875rem;
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }

  .products-dropdown .dropdown-toggle {
    margin-left: 1rem;
    padding: 0.75rem 1.25rem;
  }

  .dropdown-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .product-info {
    padding: 0.875rem 0.5rem;
    min-height: 200px;
  }

  .product-info h5 {
    font-size: 1.3rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }

  .product-info .product-description {
    font-size: 0.85rem;
    line-height: 17px;
  }

  /* Responsive dropdown positioning for medium-large screens */
  .products-dropdown-menu {
    right: -100px;
    width: 70vw;
  }
  
  .navbar .products-dropdown .dropdown-menu,
  .navbar .products-dropdown .products-dropdown-menu {
    right: -100px;
    width: 70vw;
  }
  
  .navbar .products-dropdown .dropdown-menu.show,
  .navbar .products-dropdown .products-dropdown-menu.show {
    right: -100px;
    width: 70vw;
  }
}

/* Small to medium screens (768px to 992px) */
@media (min-width: 48rem) and (max-width: 61.9988rem) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0.75rem;
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }

  .navbar .navbar-brand img {
    width: 35%;
    height: 35%;
  }

  .contact-btn {
    margin-left: 0.75rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.95rem;
    letter-spacing: 0.08rem;
  }

  .products-dropdown .dropdown-toggle {
    margin-left: 0.75rem;
    padding: 0.65rem 1rem;
  }

  .dropdown-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    padding: 1.25rem;
  }

  .product-info {
    padding: 0.75rem 0.4rem;
    min-height: 180px;
  }

  .product-info h5 {
    font-size: 1.2rem;
  }

  .product-info p {
    font-size: 0.85rem;
  }

  .product-info .product-description {
    font-size: 0.8rem;
    line-height: 15px;
  }

  /* Responsive dropdown positioning for small-medium screens */
  .products-dropdown-menu {
    right: -50px;
    width: 80vw;
  }
  
  .navbar .products-dropdown .dropdown-menu,
  .navbar .products-dropdown .products-dropdown-menu {
    right: -50px;
    width: 80vw;
  }
  
  .navbar .products-dropdown .dropdown-menu.show,
  .navbar .products-dropdown .products-dropdown-menu.show {
    right: -50px;
    width: 80vw;
  }
}

/* Very small screens (up to 768px) */
@media (max-width: 47.9988rem) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0.5rem;
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  .navbar .navbar-brand img {
    width: 30%;
    height: 30%;
  }

  .contact-btn {
    margin-left: 0.5rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.9rem;
    letter-spacing: 0.06rem;
  }

  .products-dropdown .dropdown-toggle {
    margin-left: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  .dropdown-content {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  .product-info {
    padding: 0.625rem 0.375rem;
    min-height: 160px;
  }

  .product-info h5 {
    font-size: 1.1rem;
  }

  .product-info p {
    font-size: 0.8rem;
  }

  .product-info .product-description {
    font-size: 0.75rem;
    line-height: 14px;
  }

  /* Responsive dropdown positioning for very small screens */
  .products-dropdown-menu {
    right: 0;
    width: 95vw;
  }
  
  .navbar .products-dropdown .dropdown-menu,
  .navbar .products-dropdown .products-dropdown-menu {
    right: 0;
    width: 95vw;
  }
  
  .navbar .products-dropdown .dropdown-menu.show,
  .navbar .products-dropdown .products-dropdown-menu.show {
    right: 0;
    width: 95vw;
  }
}

/* ################################## Sidebar ################################## */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(0.5rem);
  -webkit-backdrop-filter: blur(0.5rem);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed !important;
  top: 0 !important;
  right: -100vw !important;
  width: 100vw !important;
  height: 100vh !important;
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 25%, #1a202c 50%, #2d3748 75%, #4a5568 100%) !important;
  z-index: 10999 !important;
  transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  overflow-y: scroll !important;
  overflow-x: hidden !important;
  box-shadow: -0.3125rem 0 1.875rem rgba(0, 0, 0, 0.5);
}

.sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.sidebar::-webkit-scrollbar {
  width: 0.375rem;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.1875rem;
}

.sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  border-radius: 0.1875rem;
  transition: all 0.3s ease;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.4));
}

.sidebar.active {
  right: 0 !important;
}

.sidebar-header {
  padding: 1.5625rem 1.875rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0.625rem);
  position: relative;
  z-index: 2;
}

.sidebar-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sidebar-logo img {
  height: 2.8125rem;
  filter: brightness(0) invert(1) drop-shadow(0 0.125rem 0.25rem rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.sidebar-logo img:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0.25rem 0.5rem rgba(0, 0, 0, 0.4));
}

.sidebar-close {
  background: rgba(255, 255, 255, 0.15);
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(0.625rem);
}

.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.2);
}

.sidebar-nav {
  padding: 1.875rem 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-item {
  margin: 0 0.75rem 0.375rem 0.75rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 23rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 0.875rem 1.25rem;
  color: #f7fafc;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.625rem);
  position: relative;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.sidebar-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.sidebar-link:hover::before {
  left: -100%;
}

.sidebar-link:hover {
  background: rgba(74, 85, 104, 0.8);
  color: white;
  text-decoration: none;
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.3), inset 0 0.0625rem 0 rgba(255, 255, 255, 0.2);
}

.sidebar-link:active {
  background: rgba(26, 32, 44, 0.9);
}

/* Dropdown Styles */
.has-dropdown {
  position: relative;
  display: block;
  width: 100%;
}

.has-dropdown .sidebar-link {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dropdown-arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  position: absolute;
  right: 1.25rem;
}

.has-dropdown.active .dropdown-arrow {
  color: rgba(255, 255, 255, 0.9);
  transform: rotate(180deg);
}

.sidebar-dropdown {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  backdrop-filter: blur(0.625rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  width: 100%;
  display: block;
  clear: both;
  position: relative;
  z-index: 1;
}

.sidebar-dropdown.active {
  max-height: 20rem;
  padding: 0.75rem;
}

.sidebar-dropdown-link {
  display: block;
  padding: 0.625rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 0.375rem;
  margin-bottom: 0.375rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(255, 255, 255, 0.05);
  border-left: 0.125rem solid transparent;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.sidebar-dropdown-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.sidebar-dropdown-link:hover::before {
  width: 0;
}

.sidebar-dropdown-link:hover {
  background: rgba(74, 85, 104, 0.7);
  color: white;
  text-decoration: none;
  transform: scale(1.02);
  border-left-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}

.sidebar-dropdown-link:last-child {
  margin-bottom: 0;
}

/* Special Contact Link Styling - Match Navbar Exactly */
.contact-link {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 1.5625rem auto 1.875rem auto;
  padding: 0.625rem 1.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-color-secondary);
  background-color: var(--button-color);
  border: 0.0625rem solid rgba(72, 58, 160, 0.4);
  border-radius: 3.125rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.5s;
  text-align: center;
  text-decoration: none;
}

.contact-link .fa-arrow-right {
  transform: rotate(315deg);
  transition: transform 0.5s ease;
}

.contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  right: 100%;
  bottom: 0;
  opacity: 0;
  background: transparent;
  box-sizing: border-box;
  transition: 0.5s all ease;
}

.contact-link:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
  background: var(--text-color-secondary);
  border-radius: 3.125rem;
  z-index: -1;
  transition: 0.5s all ease;
}

.contact-link:hover {
  color: var(--text-color-primary);
  font-weight: 700;
  border: 0.0625rem solid rgba(68, 74, 80, 0.5);
}

.contact-link:hover .fa-arrow-right {
  transform: rotate(360deg);
}

.contact-link:active {
  color: var(--text-color-primary);
}

/* Mobile Navbar Toggle for Sidebar */
@media (max-width: 61.9988rem) {
  .navbar-toggler {
    border: none;
    padding: 0.5rem 0.625rem;
    background: transparent;
    position: relative;
    z-index: 10001;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .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='rgba%280, 123, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
  }

  /* Hide the default navbar collapse on mobile - use sidebar instead */
  .navbar-collapse {
    display: none !important;
  }

  /* Ensure navbar stays normal size on mobile */
  .navbar {
    min-height: 4.375rem;
  }
}
/* Responsive adjustments for sidebar */
@media (max-width: 30rem) {
  .sidebar {
    width: 100vw;
    right: -100vw;
  }

  .sidebar-header {
    padding: 1.25rem;
    min-height: 4.375rem;
  }

  .sidebar-logo img {
    height: 2.1875rem;
  }

  .sidebar-nav {
    padding: 0.9375rem 0 1.875rem 0;
  }
  .sidebar-menu {
    max-width: 100%;
    padding: 0 0.625rem;
    width: calc(100% - 1.25rem);
  }
  .sidebar-link {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    letter-spacing: 0.025rem;
  }

  .sidebar-dropdown-link {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact-link {
    margin: 0.9375rem auto !important;
    padding: 0.625rem 1.125rem !important;
    font-size: 1rem !important;
    letter-spacing: 0.1rem !important;
  }
}

/* Extra small screens */
@media (max-width: 23.4375rem) {
  .sidebar-menu {
    padding: 0 0.3125rem;
  }
  .sidebar-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .contact-link {
    margin: 0.9375rem auto !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem !important;
  }
}

/* Large screen adjustments */
@media (min-width: 75rem) {
  .sidebar-nav {
    padding: 2.5rem 0 3.75rem 0;
  }
  .sidebar-menu {
    max-width: 43.75rem;
    width: 100%;
  }
  .sidebar-link {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }

  .contact-link {
    margin: 2.5rem auto !important;
    padding: 0.75rem 1.25rem !important;
    font-size: 1.125rem !important;
  }
}

/* Animation for smooth transitions */
@media (prefers-reduced-motion: no-preference) {
  .sidebar,
  .sidebar-overlay,
  .sidebar-dropdown,
  .dropdown-arrow {
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  }
}

/* Enhanced Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(1.25rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sidebar.active .sidebar-header {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.sidebar.active .sidebar-item:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.3s both;
}
.sidebar.active .sidebar-item:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.4s both;
}
.sidebar.active .sidebar-item:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.5s both;
}
.sidebar.active .sidebar-item:nth-child(4) {
  animation: fadeInUp 0.6s ease 0.6s both;
}
.sidebar.active .sidebar-item:nth-child(5) {
  animation: fadeInUp 0.6s ease 0.7s both;
}
.sidebar.active .sidebar-item:nth-child(6) {
  animation: fadeInUp 0.6s ease 0.8s both;
}

/* Improved Focus States for Accessibility */
.sidebar-link:focus,
.sidebar-dropdown-link:focus,
.sidebar-close:focus {
  outline: 0.125rem solid rgba(255, 255, 255, 0.8);
  outline-offset: 0.125rem;
}

/* Enhanced Hover Effects */
.sidebar-item:hover {
  transform: translateZ(0);
}

/* Smooth Scrolling Enhancement */
.sidebar {
  scroll-behavior: smooth;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* Performance Optimizations */
.sidebar *,
.sidebar *::before,
.sidebar *::after {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Remove Bootstrap Default Dropdown Arrows */
.sidebar .dropdown-toggle::after {
  display: none !important;
}

.sidebar .dropdown-toggle::before {
  display: none !important;
}

.sidebar .dropdown-toggle .caret,
.sidebar .caret {
  display: none !important;
}

.sidebar .dropdown-menu::before,
.sidebar .dropdown-menu::after {
  display: none !important;
}

/* Ensure no Bootstrap dropdown arrows show up in any context */
.sidebar .btn-group .dropdown-toggle::after,
.sidebar .btn-group .dropdown-toggle::before,
.sidebar .dropup .dropdown-toggle::after,
.sidebar .dropup .dropdown-toggle::before,
.sidebar .dropright .dropdown-toggle::after,
.sidebar .dropright .dropdown-toggle::before,
.sidebar .dropleft .dropdown-toggle::after,
.sidebar .dropleft .dropdown-toggle::before {
  display: none !important;
}

/* Specific Products Dropdown Arrow Removal */
#productsDropdown::after,
#productsDropdown::before {
  display: none !important;
}

#productsDropdown .caret {
  display: none !important;
}

/* Ensure only our custom arrow shows */
#productsDropdown .dropdown-arrow {
  display: inline-block !important;
}

/* Force sidebar dropdown to appear below button (override Bootstrap) */
.sidebar .has-dropdown {
  position: relative;
  display: block;
  width: 100%;
}

.sidebar .has-dropdown .sidebar-dropdown {
  position: static;
  float: none;
  display: block;
  transform: none;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0.5rem 0 0 0;
  width: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sidebar .has-dropdown.active .sidebar-dropdown {
  opacity: 1;
  max-height: 20rem;
}

/* Ensure Bootstrap dropdown positioning doesn't interfere */
.sidebar .dropdown-menu {
  position: static;
  float: none;
  display: block;
  transform: none;
}

/* Override any Bootstrap dropdown toggle positioning */
.sidebar .dropdown-toggle[aria-expanded="true"] + .sidebar-dropdown,
.sidebar .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
  position: static;
  display: block;
}

/****************************/
/*  COVER IMAGE */
/****************************/

/*  INDEX HERO CONTAINER */
.index-hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh; /* or any custom height */
  overflow: hidden;
}

.index-hero-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.index-hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-color-secondary);
  text-align: center;
  top: 75%;
}

.index-hero-content h2 {
  font-size: 2.5rem;
}

.index-hero-content p {
  font-size: 1.5rem;
}

/* CALL TO ACTION BUTTON */
.call-to-action {
  margin-top: 2.5rem;
}

/* SECTION  */
.section-container .content-fluid {
  margin-top: 0.3125rem;
  margin-bottom: 0.625rem;
}

.section-container .content-fluid h2 {
  margin-top: 0.3125rem;
  margin-bottom: 0.625rem;
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: 600;
}

.section-container .content-fluid p {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: justify;
}

/* CARD STYLE 1 */
.card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20rem;
    padding: 0.125rem;
    border-radius: 1.5rem;
    overflow: hidden;
    line-height: 1.8;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.1875rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background: var(--text-color-secondary);
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content .card-heading {
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.3;
    z-index: 1;
    color: var(--text-color-secondary);
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content .card-para {
    z-index: 1;
    opacity: 0.8;
    font-size: 1.125rem;
    color: var(--text-color-secondary);
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}


.card::before {
    content: "";
    position: absolute;
    height: 160%;
    width: 160%;
    border-radius: inherit;
    background: linear-gradient(to right, var(--text-color-primary), var(--text-hover-color-primary));
    transform-origin: center;
    animation: moving 4.8s linear infinite paused;
    transition: all 0.88s cubic-bezier(0.23, 1, 0.32, 1);
}

.card:hover::before {
  animation-play-state: running;
  z-index: -1;
  width: 20%;
}

.card:hover .card-content .card-heading,
.card:hover .card-content .card-para {
  color: var(--heading-color);
}

.card:hover {
  box-shadow: 0px 0.375rem 0.8125rem rgba(52, 58, 64, 0.1), 0px 1.5rem 1.5rem rgba(60, 66, 72, 0.09), 0px 3.4375rem 2.0625rem rgba(68, 74, 80, 0.05), 0px 6.0625rem 2.4375rem rgba(76, 82, 88, 0.01),
    0px 9.5rem 2.6875rem rgba(80, 86, 93, 0);
  scale: 1.05;
  color: var(--heading-color);
}

@keyframes moving {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

/********************************/
/* CLIENT SECTION */
/********************************/

/* FEATURED CLIENT SECTION */
.featured-clients {
  background: var(--text-color-primary);
  border-radius: 1.25rem;
}

.featured-clients p {
  color: var(--text-color-secondary);
  font-size: 1.125rem;
  font-weight: 400;
}

/* CLIENT CAROUSEL */
.swiper-clientel {
  width: 100%;
  padding: 1.5625rem 0;
}
.clientel {
  width: auto; /* required for horizontal auto-scroll */
  padding: 0rem 0.625rem;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  white-space: nowrap;
  min-width: 7.5rem;
  max-width: 100%;
  text-align: center;
  background: #eee;
  border-radius: 0.5rem;
}

/***************************************/
/* MEDIA QUERIES */
/***************************************/

/* Specific fix for 991px to 1044px range */
@media screen and (min-width: 991px) and (max-width: 1044px) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0.9rem !important;
    font-size: 0.98rem !important;
    padding: 0.5rem 0 !important;
  }

  .navbar .navbar-brand img {
    width: 36% !important;
    height: 36% !important;
  }

  .contact-btn {
    margin-left: 0.9rem !important;
    padding: 0.45rem 0.8rem !important;
    font-size: 0.98rem !important;
    letter-spacing: 0.08rem !important;
  }

  .products-dropdown .dropdown-toggle {
    margin-left: 0.9rem !important;
    padding: 0.7rem 1.1rem !important;
  }

  .navbar-collapse {
    flex-wrap: nowrap !important;
  }

  .navbar-nav {
    flex-direction: row !important;
    align-items: center !important;
  }
}

/* MAX WIDTH: 992PX */
@media (max-width: 61.9988rem) {
  .navbar .navbar-nav .nav-link {
    margin-left: 0.625rem;
    padding: 0.3125rem 0;
    color: var(--text-color-primary);
    font-weight: 400;
    outline: none;
    font-size: 1.125rem;
  }

  .navbar .navbar-brand img {
    width: 35%;
    height: 35%;
  }

  .navbar .navbar-nav {
    margin-top: 1.25rem;
    margin-bottom: 0.9375rem;
  }

  .contact-btn {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin: 0rem;
    margin-left: 0.625rem;
    padding: 0.3125rem !important;
    font-size: 1.125rem;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    color: var(--text-color-secondary);
    background-color: black;
    border: 0.0625rem solid rgba(72, 58, 160, 0.4);
    border-radius: 3.125rem;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
  }

  .index-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 75%;
    max-width: 80%;
  }

  .call-to-action {
    margin-top: 1.25rem;
  }
  .section-container .content-fluid h2{
    font-size: 2rem;
  }
  .section-container .content-fluid p{
    font-size: 1.5rem;
  }
}

/* MIN WIDTH: 992PX - MAX WIDTH: 1200PX*/
@media (min-width: 61.9994rem) and (max-width: 74.9988rem) {
  .navbar .navbar-nav .nav-link {
    margin-left: 1.5625rem;
    padding: 0.625rem 0;
    color: var(--text-color-primary);
    font-weight: 500;
    outline: none;
    font-size: 1rem;
  }

  .navbar .navbar-brand img {
    width: 40%;
    height: 40%;
  }

  .navbar .navbar-nav {
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }

  .contact-btn {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin: 0rem;
    margin-left: 1.5625rem;
    padding: 0.625rem !important;
    font-size: 1rem;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    color: var(--text-color-secondary);
    background-color: black;
    border: 0.0625rem solid rgba(72, 58, 160, 0.4);
    border-radius: 3.125rem;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
  }

  .index-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 75%;
    max-width: 80%;
  }

  .call-to-action {
    margin-top: 1.875rem;
  }
}

/* MARGIN TOP - CUSTOM*/
.mt-0 {
  margin-top: 0rem !important;
}

.mt-5 {
  margin-top: 0.3125rem !important;
}

.mt-10 {
  margin-top: 0.625rem !important;
}

.mt-20 {
  margin-top: 1.25rem !important;
}

.mt-30 {
  margin-top: 1.875rem !important;
}

.mt-40 {
  margin-top: 2.5rem !important;
}

.mt-50 {
  margin-top: 3.125rem !important;
}

.mt-75 {
  margin-top: 4.6875rem !important;
}

.mt-100 {
  margin-top: 6.25rem !important;
}

.mt-200 {
  margin-top: 10.25rem !important;
}

/* MARGIN BOTTOM - CUSTOM*/
.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-5 {
  margin-bottom: 0.3125rem !important;
}

.mb-10 {
  margin-bottom: 0.625rem !important;
}

.mb-20 {
  margin-bottom: 1.25rem !important;
}

.mb-30 {
  margin-bottom: 1.875rem !important;
}

.mb-40 {
  margin-bottom: 2.5rem !important;
}

.mb-50 {
  margin-bottom: 3.125rem !important;
}

.mb-75 {
  margin-bottom: 4.6875rem !important;
}

.mb-100 {
  margin-bottom: 6.25rem !important;
}

/* MARGIN HORIZONTAL - CUSTOM*/
.mx-0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.mx-5 {
  margin-left: 0.3125rem !important;
  margin-right: 0.3125rem !important;
}

.mx-10 {
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}

.mx-20 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.mx-30 {
  margin-left: 1.875rem !important;
  margin-right: 1.875rem !important;
}

.mx-40 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.mx-50 {
  margin-left: 3.125rem !important;
  margin-right: 3.125rem !important;
}

.mx-75 {
  margin-left: 4.6875rem !important;
  margin-right: 4.6875rem !important;
}

.mx-100 {
  margin-left: 6.25rem !important;
  margin-right: 6.25rem !important;
}

/* MARGIN VERTICAL - CUSTOM*/
.my-0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.my-5 {
  margin-top: 0.3125rem !important;
  margin-bottom: 0.3125rem !important;
}

.my-10 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.my-20 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-30 {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
}

.my-40 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-50 {
  margin-top: 3.125rem !important;
  margin-bottom: 3.125rem !important;
}

.my-75 {
  margin-top: 4.6875rem !important;
  margin-bottom: 4.6875rem !important;
}

.my-100 {
  margin-top: 6.25rem !important;
  margin-bottom: 6.25rem !important;
}

/* PADDING TOP - CUSTOM*/
.pt-0 {
  padding-top: 0rem !important;
}

.pt-5 {
  padding-top: 0.3125rem !important;
}

.pt-10 {
  padding-top: 0.625rem !important;
}

.pt-20 {
  padding-top: 1.25rem !important;
}

.pt-30 {
  padding-top: 1.875rem !important;
}

.pt-40 {
  padding-top: 2.5rem !important;
}

.pt-50 {
  padding-top: 3.125rem !important;
}

.pt-75 {
  padding-top: 4.6875rem !important;
}

.pt-100 {
  padding-top: 6.25rem !important;
}

/* PADDING BOTTOM - CUSTOM*/
.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-5 {
  padding-bottom: 0.3125rem !important;
}

.pb-10 {
  padding-bottom: 0.625rem !important;
}

.pb-20 {
  padding-bottom: 1.25rem !important;
}

.pb-30 {
  padding-bottom: 1.875rem !important;
}

.pb-40 {
  padding-bottom: 2.5rem !important;
}

.pb-50 {
  padding-bottom: 3.125rem !important;
}

.pb-75 {
  padding-bottom: 4.6875rem !important;
}

.pb-100 {
  padding-bottom: 6.25rem !important;
}

/* PADDING HORIZONTAL - CUSTOM*/
.px-0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.px-5 {
  padding-left: 0.3125rem !important;
  padding-right: 0.3125rem !important;
}

.px-10 {
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.px-20 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.px-30 {
  padding-left: 1.875rem !important;
  padding-right: 1.875rem !important;
}

.px-40 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.px-50 {
  padding-left: 3.125rem !important;
  padding-right: 3.125rem !important;
}

.px-75 {
  padding-left: 4.6875rem !important;
  padding-right: 4.6875rem !important;
}

.px-100 {
  padding-left: 6.25rem !important;
  padding-right: 6.25rem !important;
}

/* PADDING VERTICAL - CUSTOM*/
.py-0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.py-5 {
  padding-top: 0.3125rem !important;
  padding-bottom: 0.3125rem !important;
}

.py-10 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.py-20 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-30 {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}

.py-40 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-50 {
  padding-top: 3.125rem !important;
  padding-bottom: 3.125rem !important;
}

.py-75 {
  padding-top: 4.6875rem !important;
  padding-bottom: 4.6875rem !important;
}

.py-100 {
  padding-top: 6.25rem !important;
  padding-bottom: 6.25rem !important;
}

/* DISPLAY FLEX */
.display-flex-center {
  display: flex;
  justify-content: center;
}

@media screen and (min-wdth: 576px) {
  .px-sm-30{
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}

/* ######################################### home feature section #################################### */

/* OWL CRAOUSEL */

.product-carousel {
  position: relative;
  max-width: 112.5rem;
  margin: 0 auto;
}
.owl-carousel {
  display: block;
}

.owl-carousel .item {
  display: flex;
  background-color: var(--text-color-secondary);
  border-radius: 1.875rem;
  overflow: hidden;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
  padding: 0;
  height: 600px; /* Fixed height for all cards */
}

.owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  height: 3.75rem;
  align-items: center;
  line-height: 3.75rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 2;
}

.owl-carousel .owl-nav .owl-prev-btn {
  left: -1.6875rem;
}

.owl-carousel .owl-nav .owl-next-btn {
  right: -1.6875rem;
}

.owl-carousel .owl-nav button {
  height: 3rem;
  width: 3rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid var(--text-color-primary);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: var(--text-color-secondary);
  top: 0.625rem;
  left: auto;
  right: auto;
}

.owl-carousel .owl-nav button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--text-color-primary);
  top: 0;
  left: 0;
  border-radius: 1.875rem;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owl-carousel .owl-nav button:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-nav button svg {
  color: var(--text-color-primary);
  z-index: 2;
  position: relative;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.owl-carousel .owl-nav button:hover svg {
  color: var(--text-color-secondary);
}

/* CAROUSEL LEFT */
.carousel-image {
  width: 50%;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CAROUSEL RIGHT */
.carousel-content {
  width: 50%;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.125rem;
  border: 0.0625rem solid #eaecf4;
  border-left: none;
  border-radius: 0 2.5rem 2.5rem 0;
  height:100%;
}

.topside .tag {
  padding: 0rem 0.5rem 0rem 0.5rem;
  display: inline-block;
  border-radius: 0.25rem;
  margin: 0 0.375rem 0.5rem 0;
  border: 0.0625rem solid var(--secondary-color);
}

.topside .tag .tag-text {
  font-weight: 500 !important;
  text-transform: uppercase !important;
}

.topside h2 {
  font-size: 1.5rem !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.carousel-content .topside p {
  font-size: 1.125rem !important;
  color: var(--secondary-color) !important;
  line-height: 1.3 !important;
}

.carousel-content .topside .app-features {
  display: block !important;
  margin: 1.25rem 0rem;
}

.carousel-content .topside .app-features .services {
  color: var(--text-highlighter);
  text-transform: uppercase;
  font-size: 1.125rem;
  font-weight: 500;
}

.carousel-content .topside .app-features .list-unstyled {
  padding-left: 0;
  list-style: none;
}

.carousel-content .topside .app-features ul li {
  margin: 0 0.1875rem 0.125rem 0;
  display: inline;
  align-items: center;
  font-size: 1.25rem !important;
  color: var(--secondary-color) !important;
  font-weight: 500;
}

.case-study-btn {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin: 0.3125rem;
  margin-left: 1.5625rem;
  padding: 0.625rem 1.125rem !important;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-highlighter);
  background-color: var(--text-color-secondary);
  border: 0.0625rem solid rgba(68, 74, 80, 0.5);
  border-radius: 3.125rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.5s;
}

.case-study-btn-hoverEffect {
  z-index: 1;
}

.case-study-btn-hoverEffect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  right: 100%;
  bottom: 0;
  opacity: 0;
  background: transparent;
  box-sizing: border-box;
  transition: 0.5s all ease;
}

.case-study-btn-hoverEffect:hover {
  color: var(--text-color-secondary);
  font-weight: 700;
}

.case-study-btn .fa-arrow-right {
  transform: rotate(315deg);
}

.case-study-btn-hoverEffect:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
  background: var(--text-highlighter);
  border-radius: 1.875rem;
  z-index: -1;
  transition: 0.5s all ease;
}

.case-study-btn-hoverEffect:hover svg {
  transform: rotate(360deg);
  transition: 0.5s all ease;
}

.bottomside .contact-btn {
  font-size: 1.125rem;
}

/* Responsive Media Queries */
@media (max-width: 1400px) {
  .owl-carousel .owl-nav .owl-prev-btn {
    left: -3.5rem;
  }

  .owl-carousel .owl-nav .owl-next-btn {
    right: -3.5rem;
  }

  .carousel-content {
    padding: 2rem;
  }

  .topside h2 {
    font-size: 1.375rem !important;
  }

  .carousel-content .topside p {
    font-size: 1rem !important;
  }
}

@media (max-width: 1200px) {
  .product-carousel {
    max-width: 100%;
    padding: 0 1rem;
  }
.owl-carousel .item {
    height: 520px; /* Adjusted height for mobile layout */
  }
  .carousel-content {
    padding: 1.5rem;
    gap: 2rem;
  }

  .topside h2 {
    font-size: 1.25rem !important;
  }

  .carousel-content .topside .app-features ul li {
    font-size: 1.125rem !important;
  }

  .case-study-btn {
    margin-left: 0;
    font-size: 1rem;
    padding: 0.5rem 1rem !important;
  }

  .bottomside .contact-btn {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .owl-carousel .item {
    flex-direction: column;
    height: 760px; /* Adjusted height for mobile layout */
  }

  .carousel-image {
    width: 100%;
    height: 250px;
  }

  .carousel-content {
    width: 100%;
    border-radius: 0 0 1.875rem 1.875rem;
    border: 0.0625rem solid #eaecf4;
    border-top: none;
    padding: 1.5rem;
    gap: 1.5rem;
    justify-content: normal;
  }

  .owl-carousel .owl-nav .owl-prev-btn {
    left: -2rem;
  }

  .owl-carousel .owl-nav .owl-next-btn {
    right: -2rem;
  }

  .topside h2 {
    font-size: 1.375rem !important;
  }

  .carousel-content .topside p {
    font-size: 1.125rem !important;
  }

  .bottomside .btn-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .owl-carousel .item {
    height: 812px; /* Adjusted height for mobile layout */
  }
  .product-carousel {
    padding: 0 0.5rem;
  }

  .owl-carousel .owl-nav {
    display: none;
  }

  .carousel-content {
    padding: 1.25rem;
    gap: 1.25rem;
  }

  .topside h2 {
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
  }

  .carousel-content .topside p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  .carousel-content .topside .app-features .services {
    font-size: 1rem;
  }

  .carousel-content .topside .app-features ul li {
    font-size: 1rem !important;
  }

  .case-study-btn {
    font-size: 0.875rem;
    padding: 0.5rem 0.875rem !important;
    letter-spacing: 0.075rem;
  }

  .bottomside .contact-btn {
    font-size: 0.875rem;
  }

  .bottomside .btn-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .bottomside .btn-wrapper a {
    width: 100%;
    text-align: center;
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .owl-carousel .item {
    height: 722px; /* Adjusted height for smaller mobile */
  }
  
  .carousel-image {
    height: 200px;
  }

  .carousel-content {
    padding: 1rem;
    gap: 1rem;
  }

  .topside .tag {
    margin: 0 0 0.75rem 0;
  }

  .topside h2 {
    font-size: 1.125rem !important;
    margin: 0.75rem 0 !important;
  }

  .carousel-content .topside p {
    font-size: 0.875rem !important;
    margin: 0.75rem 0 !important;
  }

  .carousel-content .topside .app-features {
    margin: 1rem 0 !important;
  }

  .carousel-content .topside .app-features .services {
    font-size: 0.875rem;
    margin: 0.5rem 0 !important;
  }

  .carousel-content .topside .app-features ul {
    margin: 0.5rem 0 !important;
  }

  .carousel-content .topside .app-features ul li {
    font-size: 0.875rem !important;
  }

  .case-study-btn {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem !important;
    letter-spacing: 0.05rem;
  }

  .bottomside .contact-btn {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .owl-carousel .item {
    height: 690px; /* Adjusted height for very small screens */
  }
  
  .product-carousel .row>*{
    padding-left: 0;
    padding-right: 0;
  }
  .carousel-image {
    height: 180px;
  }

  .carousel-content {
    padding: 0.875rem;
  }

  .topside h2 {
    font-size: 1rem !important;
  }

  .carousel-content .topside p {
    font-size: 0.8125rem !important;
  }

  .case-study-btn,
  .bottomside .contact-btn {
    font-size: 0.6875rem;
    padding: 0.4375rem 0.625rem !important;
  }
}
@media (max-width: 380px) {
  .owl-carousel .item {
    height: 820px; /* Adjusted height for very small screens */
  }
}
/* ########################## home about us section ############################# */


.about-us {
  max-width: 91.875rem;
}

.about-us h3 {
  font-weight: 600;
}

.about-us .about-us-content p {
  font-size: 1.5rem;
}

.about-us .about-row {
  display: flex;
  gap: 1.25rem 2.8125rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-us .about-row .about-desc-col {
  flex: 0 0 23.125rem;
}

.about-us .about-row .about-desc-col span {
  display: block !important;
  font-size: 1.5rem;
  line-height: 40px;
  font-weight: 600;
}

.about-us .about-row .about-desc-col p {
  display: block !important;
  font-size: 1.125rem;
  line-height: 32px;
  letter-spacing: 0.075rem;
  font-weight: 400;
}

.about-us .about-card {
  max-width: 30.9375rem;
  width: 100%;
  padding: 0.9375rem;
  border-radius: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 11.875rem;
  grid-gap: 1.25rem;
  align-items: flex-end;
  box-shadow: 0.625rem 0.625rem 1.875rem #bebebe, -0.625rem -0.625rem 1.875rem #ffffff;
}

.about-us .about-card .about-card-title {
  display: block !important;
  font-size: 3.75rem;
  line-height: 1;
  margin: 0;
  color:#fff;

}

.about-us .about-card .about-card-text {
  color: var(--text-color-secondary);
}

.about-us .about-card .about-card-img img {
  border-radius: 1.25rem;
}

.about-us .about-bottom .about-bottom-title {
  font-size: 2.5rem;
  font-weight: 600;
  display: block;
}

.about-us .about-bottom .about-bottom-card {
  position: relative;
  width: 100%;
  padding: 0.9375rem;
  border-radius: 1.5rem;
  overflow: hidden;
  justify-content: space-evenly;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  box-shadow: 0.3125rem 0.625rem 0.625rem #bebebe, -0.3125rem -0.625rem 0.625rem #ffffff;
}

.about-us .about-bottom .about-bottom-card .about-bottom-img {
  display: flex;
  justify-content: space-evenly;
}

.about-us .about-bottom .about-bottom-card .about-bottom-img img {
  max-width: 8.25rem;
  width: 100%;
  height: 8.25rem;
}
.about-us .about-bottom .about-bottom-card .about-bottom-text {
  color: var(--text-highlighter);
}

.about-us .about-bottom .about-bottom-card .about-bottom-bg {
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  width: calc(100% - 0.625rem);
  height: calc(100% - 0.625rem);
  z-index: -1;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(1.5625rem);
  border-radius: 1.25rem;
  overflow: hidden;
  outline: 0.125rem solid var(--text-color-secondary);
}

.about-us .about-bottom .about-bottom-card .about-bottom-blob {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background-color: rgba(8, 8, 8, 0.2);
  opacity: 1;
  filter: blur(1.25rem);
  animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

/* Responsive design for max-width 1509px */
@media (max-width: 1510px) {
  .about-us .about-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    align-items: stretch;
  }

  /* First row: "Who We Are?" | "Tech Experts On-board" | "Years of Expertise" */
  .about-us .about-row .about-desc-col:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .about-us .about-row .about-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .about-us .about-row .about-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  /* Second row: "Projects Delivered" | "Countries Served" | "What Drives Us?" */
  .about-us .about-row .about-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .about-us .about-row .about-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
  }

  .about-us .about-row .about-desc-col:last-child {
    grid-column: 3;
    grid-row: 2;
  }

  /* Adjust card and description column styling for better fit */
  .about-us .about-row .about-desc-col {
    flex: none;
    max-width: none;
    width: 100%;
  }

  .about-us .about-card {
    max-width: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }

  .about-us .about-card .about-card-img {
    align-self: center;
    margin-top: auto;
  }

  .about-us .about-card .about-card-img img {
    max-width: 8rem;
    width: 100%;
    height: auto;
  }
}

/* Additional responsive adjustments for smaller screens within the 1509px range */
@media (max-width: 1200px) {
  .about-us .about-row {
    gap: 1.25rem;
  }

  .about-us .about-row .about-desc-col span {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .about-us .about-row .about-desc-col p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .about-us .about-card .about-card-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .about-us .about-row {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }

  /* Adjust grid layout for 2 columns */
  .about-us .about-row .about-desc-col:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
    text-align: center;
  }

  .about-us .about-row .about-card:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .about-us .about-row .about-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .about-us .about-row .about-card:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
  }

  .about-us .about-row .about-card:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }

  .about-us .about-row .about-desc-col:last-child {
    grid-column: 1 / 3;
    grid-row: 4;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-us .about-row {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-us .about-row > * {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .about-us .about-row .about-desc-col {
    text-align: center;
  }

  .about-us .about-bottom .about-bottom-title {
  text-align: center;
}
}

/* ##################################### TESTIMONIAL SECTION ##################################### */

.testimonial-section {
  position: relative;
  background-color: var(--text-color-secondary);
  border-radius: 1.25rem;
}

.testimonial-section .testimonial-container {
  max-width: 91.875rem;
}

.testimonial-section .testimonial-container .testimonial-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.875rem;
}

.testimonial-section .testimonial-container .testimonial-title {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
}

.testimonial-section .testimonial-container .testimonial-item-title {
  margin-bottom: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 2rem;
  letter-spacing: -0.64px;
  line-height: 51.2px;
}
.testimonial-section .testimonial-container .testimonial-item-text {
  font-weight: 400;
  font-size: 1.125rem;
}

.testimonial-section .testimonial-container .testimonial-item-img {
  position: relative;
  height: 0;
  padding-bottom: 65%;
  overflow: hidden;
  border-radius: 1.5rem;
}

.testimonial-section .testimonial-container .testimonial-item-img .client_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.5rem;
}

.testimonial-section .testimonial-container .testimonial-item-img .testimonial-play {
  display: flex;
  width: 3rem;
  height: 3rem;
  justify-content: center;
  align-items: center;
  border-radius: 1.875rem;
  border: 0.0625rem solid #fff;
  color: #fff;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 0.625rem);
  clip-path: inset(0 round 0.625rem);
  position: relative;
}

.testimonial-section .testimonial-container .testimonial-auth-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.875rem;
  border-radius: 0rem 0rem 1.5rem 1.5rem;
  background: rgba(25, 32, 32, 0.5);
  -webkit-backdrop-filter: blur(0.625rem);
  backdrop-filter: blur(0.625rem);
  color: #fff;
}

.testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-title {
  font-size: 1.5rem;
  line-height: 32px;
  font-weight: 400;
  display: block;
}

.testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-country .testimonial-auth-flag {
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
}

.testimonial-section .testimonial-container .testimonial-nav {
  position: absolute;
  bottom: 1.25rem;
  left: 0.3125rem;
  display: flex;
  grid-gap: 1.25rem;
  z-index: 10;
}

.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev,
.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next {
  height: 3rem;
  width: 3rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid #192020;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 0.625rem);
  clip-path: inset(0 round 0.625rem);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev::before,
.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--text-color-primary);
  top: 0;
  left: 0;
  border-radius: 1.875rem;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev:hover::before,
.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev svg,
.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next svg {
  color: var(--text-color-primary);
  z-index: 2;
  position: relative;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev:hover svg,
.testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next:hover svg {
  color: var(--text-color-secondary);
}

.swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .testimonial-section .testimonial-container {
    max-width: 100%;
    padding: 1.5rem !important;
  }

  .testimonial-section .testimonial-container .testimonial-item {
    grid-gap: 1.5rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-title {
    font-size: 1.75rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }

  .testimonial-section .testimonial-container .testimonial-item-text {
    font-size: 1rem;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper {
    padding: 1rem 1.5rem;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

@media (max-width: 992px) {
  .testimonial-section .testimonial-container .testimonial-item {
    grid-template-columns: 1fr;
    grid-gap: 1.25rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-text {
    font-size: 1rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-img {
    order: -1;
    padding-bottom: 50%;
  }

  .testimonial-section .testimonial-container .testimonial-nav {
    display:none;
    bottom: 1rem;
    left: 1rem;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    border-radius: 1rem;
    margin: 0 0.5rem;
  }

  .testimonial-section .testimonial-container {
    padding: 1.25rem !important;
  }

  .testimonial-section .testimonial-container .testimonial-item {
    grid-gap: 1rem;
  }

  .testimonial-section .testimonial-container .testimonial-title {
    font-size: 1.25rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-title {
    font-size: 1.375rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }

  .testimonial-section .testimonial-container .testimonial-item-text {
    font-size: 0.9375rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-img {
    padding-bottom: 60%;
    border-radius: 1rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-img .client_image {
    border-radius: 1rem;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper {
    padding: 0.875rem 1.25rem;
    border-radius: 0 0 1rem 1rem;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-title {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .testimonial-section .testimonial-container .testimonial-nav {
    bottom: 0.75rem;
    left: 0.75rem;
    grid-gap: 1rem;
  }

  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev,
  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next {
    height: 2.5rem;
    width: 2.5rem;
  }

  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev svg,
  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next svg {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .testimonial-section {
    border-radius: 0.75rem;
    margin: 0 0.25rem;
  }

  .testimonial-section .testimonial-container {
    padding: 1rem !important;
  }

  .testimonial-section .testimonial-container .testimonial-item {
    grid-gap: 0.875rem;
  }

  .testimonial-section .testimonial-container .testimonial-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-title {
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: -0.2px;
    margin-bottom: 0.875rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .testimonial-section .testimonial-container .testimonial-item-img {
    padding-bottom: 65%;
    border-radius: 0.75rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-img .client_image {
    border-radius: 0.75rem;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper {
    padding: 0.75rem 1rem;
    border-radius: 0 0 0.75rem 0.75rem;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-title {
    font-size: 1rem;
    line-height: 1.3;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-country {
    font-size: 0.875rem;
  }

  .testimonial-section .testimonial-container .testimonial-nav {
    bottom: 0.5rem;
    left: 0.5rem;
    grid-gap: 0.75rem;
  }

  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev,
  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next {
    height: 2.25rem;
    width: 2.25rem;
  }

  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev svg,
  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next svg {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .testimonial-section .testimonial-container {
    padding: 0.875rem !important;
  }

  .testimonial-section .testimonial-container .testimonial-item {
    grid-gap: 0.75rem;
  }

  .testimonial-section .testimonial-container .testimonial-title {
    font-size: 1rem;
    margin-bottom: 0.625rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-title {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
  }

  .testimonial-section .testimonial-container .testimonial-item-text {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .testimonial-section .testimonial-container .testimonial-item-img {
    padding-bottom: 70%;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper {
    padding: 0.625rem 0.875rem;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-title {
    font-size: 0.9375rem;
  }

  .testimonial-section .testimonial-container .testimonial-auth-wrapper .testimonial-auth-country {
    font-size: 0.8125rem;
  }

  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev,
  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next {
    height: 2rem;
    width: 2rem;
  }

  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-prev svg,
  .testimonial-section .testimonial-container .testimonial-nav .testimonial-button-next svg {
    font-size: 1rem;
  }
}
/* ################################## home industries we serve section #################################### */

.industry-services {
  position: relative;
}

.industry-services-container {
  background-color: var(--text-color-secondary);
  border-radius: 1.25rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.industry-services .industry-services-slider {
  padding: 0;
}

.industry-services .industry-services-slider .industry-services-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  z-index: 3;
  margin-top: 1.875rem;
  margin-right: 12px;
}

.industry-services-slider .swiper-slide {
  height: auto;
}

.industry-services .swiper-slide {
  max-width: 31.25rem;
}

.industry-services .swiper-slide .industry-services-item {
  border-radius: 1.25rem;
  padding: 1.875rem;
  height: 100%;
  color: var(--text-color-secondary);
  background: var(--text-color-primary);
  /* background: linear-gradient(to right, var(--text-color-primary), var(--text-hover-color-primary)); */
   background: linear-gradient(to bottom, #bdc3c7, #2c3e50);
}

.industry-services .swiper-slide .industry-services-item .industry-services-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  border: 0.0625rem solid var(--text-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--text-color-secondary);
  color: var(--primary-color);
  margin-bottom: 1.5625rem;
}

.industry-services .swiper-slide .industry-services-item .industry-services-item-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.industry-services-item:hover .industry-services-item-icon svg {
  width: 1.875rem;
  height: 1.875rem;
  color: var(--text-highlighter);
}

.industry-services .swiper-slide .industry-services-item .industry-services-item-title {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-color-secondary);
  font-size: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
}

.industry-services .swiper-slide .industry-services-item .industry-services-item-title .industry-services-item-title-text {
  margin: 0;
  font-size: 1.5rem;
}

.industry-services .swiper-slide .industry-services-item .industry-services-item-title svg {
  display: block;
  height: 1.25rem;
  width: 1.25rem;
}

.industry-services-item-title:hover .industry-services-item-title-text {
  color: var(--text-highlighter-2);
  font-weight: 600;
}

.industry-services-item-list {
  padding-left: 0;
  list-style: none;
  font-size: 1.125rem;
  font-weight: 400;
}

.industry-services-item ul li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.industry-services-item-list ul li svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  display: block;
  position: relative;
}

.industry-services-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.625rem;
  position: relative;
  z-index: 3;
  margin-top: 1.875rem;
  margin-right: 12px;
}

.industry-services-nav .industry-services-slider-button-prev,
.industry-services-nav .industry-services-slider-button-next {
  height: 3rem;
  width: 3rem;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.0625rem solid #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 0.625rem);
  clip-path: inset(0 round 0.625rem);
  border: 0.0625rem solid var(--primary-color);
  cursor: pointer;
}

.industry-services-nav .industry-services-slider-button-prev::before,
.industry-services-nav .industry-services-slider-button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--text-color-primary);
  top: 0;
  left: 0;
  border-radius: 1.875rem;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-services-nav .industry-services-slider-button-prev:hover::before,
.industry-services-nav .industry-services-slider-button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.industry-services-nav .industry-services-slider-button-prev svg,
.industry-services-nav .industry-services-slider-button-next svg {
  color: var(--text-color-primary);
  z-index: 2;
  position: relative;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.industry-services-nav .industry-services-slider-button-prev:hover svg,
.industry-services-nav .industry-services-slider-button-next:hover svg {
  color: var(--text-color-secondary);
}

/* ################################### Footer Section #################################### */
.footer-content {
  text-align: left;
}

.footer-content .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-content .logo {
  display: block;
  width: 65%;
  max-width: 250px;
  height: auto;
  margin: 0 auto 1rem;
}

.footer-content .logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.footer-content .social-card {
  display: flex;
  height: 60px;
  width: 350px;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  justify-content: center;
}

.footer-content .social-card .social-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 40px;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 50px;
}

.footer-content .social-card svg {
  position: absolute;
  display: flex;
  width: 50%;
  height: 100%;
  opacity: 1;
  color: var(--heading-color);
  transition: opacity 0.25s;
  z-index: 2;
  padding: 0.25rem;
  cursor: pointer;
}


.footer-content .social-card .social-link:hover {
  background-image: radial-gradient(circle, #2a2a2a, #2b2b2b, #2c2c2c, #2d2d2d, #2e2e2e, #7b9db1, #8bc4d7, #9cecf8);
  animation: bounce_icon 0.4s linear;
}

.footer-content .social-card .social-link:hover svg {
  transform: scale(1);
  color: var(--text-color-secondary);
}

@keyframes bounce_icon {
  40% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.8);
  }

  80% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.footer-content .newsletter {
  margin-top: 1.5rem;
  text-align: center;
}

.footer-content .newsletter h3 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.625rem;
  color: var(--text-highlighter);
}

.footer-content .email-form {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.footer-content .email-input-container {
  position: relative;
  width: 100%;
  max-width: 25rem;
  margin: 0 auto;
}

.footer-content .email-input {
  background: transparent;
  border: none;
  border-bottom: 0.125rem solid #2c3237;
  color: var(--text-highlighter-2);
  padding: 10px 40px 10px 0;
  font-size: 1.125rem;
  width: 100%;
  outline: none;
}

.footer-content .email-input::placeholder {
  color: var(--secondary-color);
}

.footer-content .submit-btn {
  position: absolute;
  right: -40%;
  bottom: 0px;
  margin: 0px;
  margin-left: 0px;
  padding: 0.625rem 1.125rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  color: var(--text-color-secondary);
  background-color: var(--button-color);
  border: 0.0625rem solid rgba(72, 58, 160, 0.4);
  border-radius: 3.125rem;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.5s;
  white-space: nowrap;
  min-width: fit-content;
}

.footer-content .submit-btn-hoverEffect {
  z-index: 1;
}

.footer-content .submit-btn-hoverEffect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  right: 100%;
  bottom: 0;
  opacity: 0;
  background: transparent;
  box-sizing: border-box;
  transition: 0.5s all ease;
}

.footer-content .submit-btn-hoverEffect:hover {
  color: var(--text-color-primary);
  font-weight: 700;
  border: 0.0625rem solid rgba(68, 74, 80, 0.5);
}

.footer-content .submit-btn .fa-arrow-right {
  transform: rotate(315deg);
  transition: 0.5s all ease;
}

.footer-content .submit-btn-hoverEffect:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
  background: var(--text-color-secondary);
  border-radius: 1.875rem;
  z-index: -1;
  transition: 0.5s all ease;
}

.footer-content .submit-btn-hoverEffect:hover svg {
  transform: rotate(360deg);
  transition: 0.5s all ease;
}

.footer-section {
  text-align: left;
  width: 100%;
}

.footer-section h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-color-primary);
}
.col-xl-6.industries {
  border-right: 0.1px solid #e5e5e5;
}
.col-xl-6.pl ul{
  padding-left: 25px;
}
@media (max-width: 1199px) {
  .col-xl-6.industries {
    border-right: none;
  }
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-section ul li i {
  margin-right: 0.625rem;
  flex-shrink: 0;
  width: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.footer-section ul li svg {
  margin-right: 0.625rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.footer-section ul li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-section ul li a svg:hover {
  color: var(--text-highlighter);
}

.footer-bottom {
  border-top: 0.0625rem solid var(--secondary-color);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom .copyright {
  color: var(--secondary-color);
  font-size: 1rem;
}

.footer-bottom .copyright a {
  text-decoration: none;
  color: var(--secondary-color);
}

.footer-bottom .copyright a:hover {
  color: var(--text-highlighter);
  font-weight: 500;
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-bottom .footer-legal a {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom .footer-legal a:hover {
  color: var(--text-highlighter-2);
}

@media (max-width: 1199px) {
  .footer-content .social-card {
    width: 300px;
    margin: 0 auto 1.5rem;
  }
  
  .footer-content .email-input-container {
    max-width: 22rem;
  }
  
  .footer-content .email-form {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content .submit-btn {
    position: static;
    margin-top: 1rem;
    align-self: center;
  }
  
  .footer-section {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
  }
  
  .footer-section h4 {
    font-size: 1.375rem;
  }
  
  /* Stack industries columns vertically */
  .footer-content .row > div:nth-child(4),
  .footer-content .row > div:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  
  .footer-content .row > div:nth-child(4) .footer-section h4,
  .footer-content .row > div:nth-child(5) .footer-section h4 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-content .row > div:nth-child(5) .footer-section h4 {
    display: block;
  }
  
  .footer-content .row > div:nth-child(4) .footer-section ul,
  .footer-content .row > div:nth-child(5) .footer-section ul {
    display: inline-block;
    text-align: left;
  }
  
  /* 3-column layout for non-industry footer sections */
  .footer-content .row .col-xl-2:not(:nth-child(2)):not(:nth-child(4)):not(:nth-child(5)) {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .footer-content .row .col-xl-2:nth-child(2) {
    display: none;
  }
  .col-xl-6.pl ul{
  padding-left: 0px;
}
}

@media (max-width: 992px) {
  .footer-content .logo {
    width: 50%;
    margin-bottom: 1rem;
  }
  
  .footer-content .social-card {
    width: 280px;
    height: 50px;
    margin: 0 auto 1.5rem;
  }
  
  .footer-section {
    margin-bottom: 2rem;
  }
  
  .footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  /* Stack industries vertically - consistent with larger breakpoint */
  .footer-content .row > div:nth-child(4),
  .footer-content .row > div:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
  }    .footer-section ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
  }
  
  .footer-section ul li i {
    margin-right: 0.5rem;
    flex-shrink: 0;
    width: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-section ul li svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
  }
  
  .footer-section ul li a {
    font-size: 1rem;
  }
  
  /* 3-column layout for footer sections */
  .footer-content .row .col-xl-2:not(:nth-child(2)) {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .footer-content .row .col-xl-2:nth-child(2) {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-content .logo {
    width: 60%;
    display: block;
    margin: 0 auto 1.5rem;
  }
  
  .footer-content .social-card {
    width: 250px;
    height: 45px;
    justify-content: center;
  }
  
  .footer-content .social-card .social-link {
    width: 20%;
    margin: 0 2px;
  }
  
  .footer-section h4 {
    font-size: 1.125rem;
  }
  
  .footer-section ul li a {
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding-top: 1.25rem;
    gap: 20px;
  }
  
  .footer-bottom .copyright,
  .footer-bottom .footer-legal a {
    font-size: 0.9rem;
  }
    .footer-bottom .footer-legal {
    gap: 20px;
  }
  
  /* Mobile responsive styles for Industries section */
  /* Stack Industries sections on mobile */
  .footer-content .row > div:nth-child(4) .footer-section h4 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-content .row > div:nth-child(5) .footer-section h4 {
    display: block; /* Show the header on second column when stacked */
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-content .row > div:nth-child(5) .footer-section ul {
    margin-top: 0;
    padding-top: 0;
  }
  
  /* Style both Industries columns when stacked */
  .footer-content .row > div:nth-child(4),
  .footer-content .row > div:nth-child(5) {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 1.5rem;
  }
  
  /* Add visual gap between the stacked Industry columns */
  .footer-content .row > div:nth-child(4) {
    padding-bottom: 1rem;
    margin-bottom: 0;
    border-bottom: none;
  }
  
  .footer-content .row > div:nth-child(5) {
    padding-top: 0;
    margin-top: 0;
  }

  /* 3-column layout for footer sections */
  .footer-content .row .col-xl-2:not(:nth-child(2)) {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .footer-content .row .col-xl-2:nth-child(2) {
    display: none;
  }
}

@media (max-width: 576px) {
  .section-container {
    padding: 0 10px;
  }
  
  .footer-content .logo {
    width: 70%;
    margin-bottom: 1.25rem;
  }
  
  .footer-content .social-card {
    width: 220px;
    height: 40px;
  }
  
  .footer-content .social-card .social-link {
    width: 22%;
  }
  
  .footer-content .social-card svg {
    width: 60%;
  }
  
  .footer-content .newsletter h3 {
    font-size: 0.95rem;
  }
  
  .footer-content .email-input-container {
    max-width: 16rem;
  }
  
  .footer-content .email-input {
    font-size: 0.95rem;
    padding: 8px 0;
  }
  
  .footer-content .email-form {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content .submit-btn {
    position: static;
    margin-top: 1rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 0.08rem;
    align-self: center;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
  }
  
  .footer-section h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }    .footer-section ul li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
  }
  
  .footer-section ul li i {
    margin-right: 0.4rem;
    flex-shrink: 0;
    width: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-section ul li svg {
    margin-right: 0.4rem;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
  }
  
  .footer-section ul li a {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 16px;
  }
  
  .footer-bottom .copyright,
  .footer-bottom .footer-legal a {
    font-size: 0.85rem;
  }
    .footer-bottom .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
  }
  
  /* Stack industries on top of each other on mobile */
  .footer-content .row > div:nth-child(4),
  .footer-content .row > div:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  
  .footer-content .row > div:nth-child(4) .footer-section,
  .footer-content .row > div:nth-child(5) .footer-section {
    margin-bottom: 0.5rem;
  }
  
  .footer-content .row > div:nth-child(5) .footer-section ul {
    margin-top: 0;
  }

  /* Layout for other footer sections */
  .footer-content .row .col-xl-2:not(:nth-child(2)):not(:nth-child(4)):not(:nth-child(5)) {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .footer-content .row .col-xl-2:nth-child(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-content .logo {
    width: 80%;
  }
  
  .footer-content .social-card {
    width: 200px;
    height: 35px;
  }
  
  /* Ensure industries stack on smaller screens */
  .footer-content .row > div:nth-child(4),
  .footer-content .row > div:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  
  .footer-content .newsletter h3 {
    font-size: 0.9rem;
    line-height: 1.2;
  }
  
  .footer-content .email-input-container {
    max-width: 14rem;
  }
  
  .footer-content .email-input {
    font-size: 0.9rem;
    padding: 6px 0;
  }
  
  .footer-content .email-form {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  
  .footer-content .submit-btn {
    position: relative;
    right: auto;
    margin-left: 0.5rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    letter-spacing: 0.06rem;
  }
  
  .footer-section h4 {
    font-size: 0.95rem;
  }
  
  .footer-section ul li a {
    font-size: 0.85rem;
  }
  
  .footer-bottom .copyright,
  .footer-bottom .footer-legal a {
    font-size: 0.8rem;
  }
  
  /* Preserve footer multi-column layout on small screens */
  .footer-content .row .col-xl-2:not(:nth-child(2)) {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 360px) {
  .footer-content .logo {
    width: 90%;
  }
  
  .footer-content .social-card {
    width: 100%;
    max-width: 240px;
    height: 32px;
    display: flex;
    justify-content: space-between;
  }
  
  .footer-content .social-card svg {
    width: 60%;
  }
  
  .footer-content .newsletter h3 {
    font-size: 0.85rem;
  }
  
  .footer-content .email-input-container {
    max-width: 12rem;
  }
  
  .footer-content .email-input {
    font-size: 0.85rem;
    padding: 6px 0;
  }
  
  .footer-content .email-form {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content .submit-btn {
    position: static;
    margin-top: 1rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.05rem;
    align-self: center;
  }
  
  .footer-section h4 {
    font-size: 0.9rem;
  }
  
  .footer-section ul li a {
    font-size: 0.8rem;
  }
  
  .footer-bottom .copyright,
  .footer-bottom .footer-legal a {
    font-size: 0.75rem;
  }
  
  .footer-bottom .footer-legal {
    gap: 12px;
  }
  
  /* Preserve footer multi-column layout on small screens */
  .footer-content .row .col-xl-2:not(:nth-child(2)) {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1rem;
  }
}

/* Responsive styles - maintaining original layout */
@media (max-width: 48rem) {
  .footer-logo {
    display: flex;
    align-items: flex-start;
  }

  .logo {
    margin: 0 0 1rem 0;
  }

  .newsletter {
    align-items: flex-start;
  }

  .email-form {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .email-input {
    width: 100%;
    max-width: 300px;
    text-align: left;
  }

  .footer-section {
    text-align: left;
    align-items: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }

  .footer-legal {
    gap: 16px;
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .footer-content {
    text-align: left;
  }
  
  .footer-content .col-xl-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-content .col-xl-4 .mt-10 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .footer-content .logo {
    width: 80%;
    max-width: 200px;
    margin: 0 0 1.5rem 0;
    display: block;
  }
  
  .footer-content .social-card {
    width: 280px;
    margin: 0 0 2rem 0;
    justify-content: flex-start;
  }
  
  .footer-content .newsletter {
    text-align: left;
    margin-top: 1rem;
    width: 100%;
  }
  
  .footer-content .email-form {
    justify-content: flex-start;
  }
  
  .footer-content .email-input-container {
    margin: 0;
  }
  
  .footer-section {
    text-align: left;
  }
}
/* ############################################## footer css end ########################################## */


/* Company Vision Responsive Styles */
@media (max-width: 61.9988rem) {
  .section-container .content-fluid .row.justify-content-center.align-items-center .col-5 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .section-container .content-fluid .row.justify-content-center.align-items-center .col-5:last-child {
    margin-bottom: 0;
  }

  .section-container .content-fluid .row.justify-content-center.align-items-center {
    text-align: center;
  }
}

@media (max-width: 47.9988rem) {
  .section-container .content-fluid .row.justify-content-center.align-items-center .col-5 h2 {
    font-size: 1.875rem;
    line-height: 1.3;
  }

  .section-container .content-fluid .row.justify-content-center.align-items-center .col-5 p {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

@media (max-width: 35.9988rem) {
  .section-container .content-fluid .row.justify-content-center.align-items-center .col-5 h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .section-container .content-fluid .row.justify-content-center.align-items-center .col-5 p {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .section-container .content-fluid .row.justify-content-center.align-items-center {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

@media (max-width: 30rem) {
  .section-container .content-fluid .row.justify-content-center.align-items-center .col-5 h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .section-container .content-fluid .row.justify-content-center.align-items-center .col-5 p {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}


/* ########################## contact page ########################## */
   /* Contact Banner Styles */
        .contact-banner {
            background: #282529; /* Dark grey as primary color */
            color: white; /* White as secondary color */
            padding: 2rem 0;
            text-align: center;
            margin-top: 80px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .contact-banner::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 30%;
            background: linear-gradient(90deg, rgba(40, 37, 41, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
            z-index: 1;
        }
        
        .contact-banner-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .contact-banner-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }
        
        .contact-banner-subtitle {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.02em;
        }
        
        /* Scroll Down Indicator Styles */
        .scroll-down-container {
            margin: 2rem auto 0;
            display: flex;
            justify-content: center;
            opacity: 0;
            animation: fadeIn 1s ease forwards 0.8s;
            cursor: pointer;
        }
        
        .scroll-down-indicator {
            position: relative;
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            border-radius: 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 10px;
            transition: all 0.3s ease;
        }
        
        .scroll-down-indicator:hover {
            border-color: #fff;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }
        
        .scroll-arrow {
            position: relative;
            width: 10px;
            height: 10px;
            margin-bottom: 5px;
            border-right: 2px solid rgba(255, 255, 255, 0.8);
            border-bottom: 2px solid rgba(255, 255, 255, 0.8);
            transform: rotate(45deg);
            animation: scrollAnimation 2s infinite;
        }
        
        .scroll-arrow:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .banner-decorative-line {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
            z-index: 5;
            animation: glowLine 3s ease-in-out infinite alternate;
        }
        
        @keyframes scrollAnimation {
            0% {
                opacity: 0;
                transform: rotate(45deg) translate(-5px, -5px);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: rotate(45deg) translate(5px, 5px);
            }
        }
        
        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
        
        @keyframes glowLine {
            0% {
                box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
            }
            100% {
                box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
            }
        }
        
        /* Responsive styles for the banner */
        @media (max-width: 768px) {
            .contact-banner {
                padding: 1.5rem 0;
                margin-top: 70px;
            }
            
            .contact-banner-title {
                font-size: 2rem;
            }
            
            .contact-banner-subtitle {
                font-size: 1rem;
            }
            
            .scroll-down-container {
                margin: 1.5rem auto 0;
            }
            
            .scroll-down-indicator {
                width: 24px;
                height: 40px;
                padding-top: 8px;
            }
            
            .scroll-arrow {
                width: 8px;
                height: 8px;
                margin-bottom: 3px;
                border-width: 1.5px;
            }
            
            .contact-banner::after {
                width: 20%;
            }
            
            .banner-decorative-line {
                height: 1px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-banner {
                padding: 1.2rem 0;
                margin-top: 60px;
            }
            
            .contact-banner-title {
                font-size: 1.8rem;
            }
            
            .contact-banner-subtitle {
                font-size: 0.9rem;
            }
            
            .contact-banner::after {
                width: 15%;
            }
            
            .scroll-down-container {
                margin: 1.2rem auto 0;
            }
            
            .scroll-down-indicator {
                width: 20px;
                height: 36px;
            }
        }


.form-section {
    background: linear-gradient(0deg, #f7f7f7, #f7f7f7), linear-gradient(0deg, #e6e6e6, #e6e6e6);
    border: 1px solid #e6e6e6;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    word-wrap: break-word;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.form-group {
    flex: 1;
    min-width: 0;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #718096;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #2d3748;
    background: white;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4299e1;
}

.phone-input {
    display: flex;
    gap: 5px;
    width: 100%;
}

select.phone-code {
    width: 15%;
    flex-shrink: 0;
    border-radius: 8px;
    min-width: 60px;
    /* border-right: none; */
}

.phone-number {
    flex: 1;
    min-width: 0;
    border-radius: 0 8px 8px 0;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.file-upload {
    margin: 20px 0;
}

.file-upload-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 8px;
}

.file-upload-text {
    font-size: 12px;
    color: #718096;
    margin-bottom: 15px;
}

.file-upload-area {
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background: #f7fafc;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.file-upload-area:hover {
    border-color: #cbd5e0;
}

.contact-form-submit-btn {
    position: relative;
    display: inline-block;
    width: fit-content;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color-secondary, #ffffff);
    background-color: var(--button-color, #483aa0);
    border: 1px solid rgba(72, 58, 160, 0.4);
    border-radius: 50px;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
}

.contact-form-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: transparent;
    box-sizing: border-box;
    transition: 0.5s all ease;
}

.contact-form-submit-btn:hover {
    color: var(--text-color-primary, #000000);
    font-weight: 700;
    border: 1px solid rgba(68, 74, 80, 0.5);
}

.contact-form-submit-btn:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    background: var(--text-color-secondary, #ffffff);
    border-radius: 30px;
    z-index: -1;
    transition: 0.5s all ease;
}

.contact-form-submit-btn:hover {
    background: #1a202c;
}

.contact-form-submit-btn .fa-arrow-right {
    transform: rotate(315deg);
}

.contact-form-submit-btn:hover .fa-arrow-right {
    transform: rotate(360deg);
    transition: 0.5s all ease;
}

.info-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
}

.top-section {
    width: 100%;
}

.addresses-container {
    width: 100%;
    box-sizing: border-box;
}

.addresses-title {
    font-size: 16px;
    color: #718096;
    margin-bottom: 20px;
    padding-left: 20px;
}

.addresses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-rows: 1fr 1fr; */
    gap: 5px;
    width: 100%;
    box-sizing: border-box;
}

.addresses-grid-one {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-template-rows: 1fr 1fr; */
    gap: 5px;
    width: 100%;
    box-sizing: border-box;
}

.office {
    padding: 5px 25px;
    border-radius: 12px;
    height: 100%;
    box-sizing: border-box;
}

.office-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.flag-icon {
    width: 24px;
    height: 18px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.office-country {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
}

.office-address {
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.office-phone {
    color: #2d3748;
    font-size: 14px;
    font-weight: 500;
}

.project-inquiries {
    padding: 15px 25px;
    border-radius: 12px;
    height: 100%;
    box-sizing: border-box;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    word-break: break-all;
}

.contact-info:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    flex-shrink: 0;
}

.contact-text {
    color: #4299e1;
    font-size: 14px;
    text-decoration: none;
    word-break: break-word;
}

/* Business Hours Card */
.business-hours {
    padding: 15px 25px;
    border-radius: 12px;
    height: 100%;
    box-sizing: border-box;
}

.business-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.hours-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.hours-icon {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    color: #4299e1;
}

.hours-content {
    flex: 1;
    min-width: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 5px;
}

.hours-item:last-child {
    margin-bottom: 0;
}

.hours-day {
    color: #2d3748;
    font-weight: 500;
}

.hours-time {
    color: #718096;
}

.timezone-note {
    font-size: 12px;
    color: #a0aec0;
    font-style: italic;
    margin-top: 8px;
    word-wrap: break-word;
}

/* Location Map Card */
.location-map {
    padding: 5px 25px;
    border-radius: 12px;
    height: 100%;
    box-sizing: border-box;
}

.addresses-title{
  padding-left: 20px;
}

.location-title {
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.map-container {
    margin-bottom: 5px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.map-container iframe {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 200px;
    display: block;
}

.map-link {
    display: flex;
    align-items: center;
    float: right;
    margin-right: 2px;
    flex-wrap: wrap;
}

.map-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    color: #4299e1;
    flex-shrink: 0;
}

.map-text {
    color: #4299e1;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.map-text:hover {
    text-decoration: underline;
}

.social-section {
    padding: 25px;
    border-radius: 12px;
    box-sizing: border-box;
}

.social-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #718096;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.horizontal-separator {
    width: 90%;
    height: 1px;
    background-color: #e2e8f0;
    margin: 5px auto;
    display: block;
}

.career-banner {
    background: #2c3237;
    padding: 20px 40px;
    /* border-radius: 12px; */
    text-align: center;
    margin-top: 40px;
    color: white;
    box-sizing: border-box;
}

.career-text {
    font-size: 16px;
    font-weight: 500;
    color: white;
    word-wrap: break-word;
}
.career-text strong {
    color: white;
}


.career-email {
    color: #4299e1;
    font-weight: 600;
    text-decoration: none;
    word-break: break-all;
}


/* Mobile Responsive Styles */

/* Large screens - Keep existing layout intact */
@media (min-width: 1200px) {
    /* Preserve the original two-column layout */
    .container-fluid.row {
        display: flex;
        align-items: stretch;
    }
    
    .form-section.col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .info-section.col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Increase vertical spacing between right section parts */
    .addresses-grid-one {
        margin-bottom: 30px;
    }
    
    .addresses-grid {
        margin-bottom: 25px;
    }
    
    .horizontal-separator {
        margin: 25px auto;
    }
    
    .social-section {
        margin-top: 20px;
    }
    
    /* Individual section spacing */
    .office, .project-inquiries, .business-hours, .location-map {
        margin-bottom: 15px;
    }
}

/* Medium screens and tablets */
@media (max-width: 1199.98px) {
    .container-fluid.px-50 {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .form-section, .info-section {
        padding: 35px;
    }
}

/* Tablet landscape */
@media (max-width: 991.98px) {
    .container-fluid.mt-200 {
        margin-top: 120px;
    }
    
    .container-fluid.px-50 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .container-fluid.row {
        min-height: auto;
    }
    
    .form-section, .info-section {
        padding: 30px;
        margin-bottom: 30px;
        justify-content: flex-start;
        min-height: auto;
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .office, .project-inquiries, .business-hours, .location-map {
        padding: 20px;
    }
}

/* Small screens and large phones */
@media (max-width: 767.98px) {
    .container-fluid.mt-200 {
        margin-top: 100px;
    }
    
    .container-fluid.px-50 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .form-section, .info-section {
        padding: 25px;
        margin-bottom: 20px;
        border-radius: 8px;
        justify-content: flex-start;
        min-height: auto;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .phone-input {
        flex-direction: row;
        gap: 8px;
    }
    
    select.phone-code {
        width: 25%;
        min-width: 80px;
    }
    
    .phone-number {
        border-radius: 8px;
    }
    
    .addresses-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .addresses-title {
        text-align: center;
        font-size: 18px;
        margin-bottom: 20px;
        padding-left: 0;
    }
    
    .addresses-grid, .addresses-grid-one {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
        width: 100%;
    }
    
    .office, .project-inquiries, .business-hours, .location-map {
        padding: 20px 15px;
        text-align: left;
    }
    
    .office-header {
        justify-content: flex-start;
        margin-bottom: 12px;
    }
    
    .office-country, .project-title, .business-title, .location-title {
        font-size: 16px;
    }
    
    .office-address, .office-phone, .contact-text {
        font-size: 13px;
    }
    
    .map-container iframe {
        height: 180px;
    }
    
    .social-section {
        max-width: 100%;
        width: 100%;
        margin: 15px auto 0;
        padding: 20px 15px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 20px;
    }
    
    .career-banner {
        margin: 30px auto;
        padding: 20px;
        max-width: 95%;
    }
    
    .career-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .contact-form-submit-btn {
        font-size: 12px;
        padding: 12px 20px;
        letter-spacing: 1px;
    }
    
    .file-upload-area {
        padding: 25px 15px;
        font-size: 14px;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .container-fluid.mt-200 {
        margin-top: 80px;
    }
    
    .container-fluid.px-50 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .form-section, .info-section {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .phone-input {
        gap: 5px;
    }
    
    select.phone-code {
        width: 30%;
        min-width: 70px;
        font-size: 13px;
    }
    
    .addresses-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .office, .project-inquiries, .business-hours, .location-map {
        padding: 15px 10px;
    }
    
    .office-country, .project-title, .business-title, .location-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .flag-icon {
        width: 20px;
        height: 15px;
        margin-right: 8px;
    }
    
    .contact-icon, .map-icon {
        width: 14px;
        height: 14px;
        margin-right: 8px;
    }
    
    .hours-icon {
        width: 16px;
        height: 16px;
        margin-right: 10px;
    }
    
    .map-container iframe {
        height: 160px;
    }
    
    .social-section {
        padding: 15px 10px;
    }
    
    .social-title {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .career-banner {
        padding: 15px;
        margin: 20px auto;
    }
    
    .career-text {
        font-size: 13px;
    }
    
    .contact-form-submit-btn {
        font-size: 11px;
        padding: 10px 16px;
    }
    
    .file-upload-area {
        padding: 20px 10px;
        font-size: 13px;
    }
    
    .file-upload-text {
        font-size: 11px;
    }
    
    .horizontal-separator {
        width: 95%;
        margin: 8px auto;
    }
}

/* Very small screens */
@media (max-width: 374.98px) {
    .container-fluid.mt-200 {
        margin-top: 70px;
    }
    
    .form-section, .info-section {
        padding: 15px 10px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .addresses-title {
        font-size: 15px;
    }
    
    .office-country, .project-title, .business-title, .location-title {
        font-size: 14px;
    }
    
    .office-address, .office-phone, .contact-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .map-container iframe {
        height: 140px;
    }
    
    .career-text {
        font-size: 12px;
    }
    
    .contact-form-submit-btn {
        font-size: 10px;
        padding: 8px 14px;
    }
}

  /* ##################################### product pages ##################################### */

  /* Hero Section */
.portfolio-hero-section {
  padding: 80px 0 50px;
  background: #ffff;
  position: relative;
  overflow: hidden;
}

.portfolio-main-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #2c3e50;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Image Container */
.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
  perspective: 1000px;
}

.hero-monitor {
  position: relative;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 0.4s ease;
}


.monitor-frame {
  background: #2c3e50;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

.monitor-screen {
  background: #000;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  width: 600px;
  height: 380px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.screen-content {
  width: 100%;
  height: 100%;
  /* object-fit: fill; */
  display: block;
}

.monitor-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
  position: relative;
}

/* Monitor neck - connects to bottom of monitor */
.monitor-stand::before {
  content: '';
  width: 60px;
  height: 30px;
  background: linear-gradient(145deg, #3d4a5c, #2c3544);
  border-radius: 0 0 8px 8px;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 5px;
  z-index:1;
}

/* Monitor base */
.monitor-base {
  width: 140px;
  height: 18px;
  background: linear-gradient(145deg, #3d4a5c, #2c3544);
  border-radius: 25px;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

/* Vertical pole connecting neck to base */
.monitor-base::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 35px;
  background: linear-gradient(145deg, #3d4a5c, #2c3544);
  border-radius: 3px;
  box-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Project Info Styling */
.portfolio-project-info {
  margin-top: 60px;
}

.info-item {
  text-align: center;
  margin-bottom: 30px;
}

.info-item h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.info-item p {
  font-size: 1rem;
  color: #34495e;
  margin-bottom: 0;
  line-height: 1.6;
}

.info-item a {
  color: #2980b9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: #1abc9c;
}

.cta-button {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #c0392b, #a93226);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Portfolio Content */
.portfolio-content {
  padding: 80px 0;
}

.portfolio-section {
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: left;
}

.section-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #34495e;
}

.section-content p {
  margin-bottom: 20px;
}

/* Portfolio Images */
.portfolio-images {
  margin: 60px 0;
  text-align: center;
}

.portfolio-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: block;
  margin: 0 auto;
}

.portfolio-image:hover {
  transform: translateY(-5px);
}

/* Solution Features */
/* Solution Features Grid */
.solution-features {
  margin-top: 60px;
}

/* Grid layout for feature cards */
.solution-features .row {
  margin: 0 -15px;
}

.solution-features .col-lg-6 {
  padding: 0 15px;
  margin-bottom: 30px;
}

.solution-features .col-md-6 {
  padding: 0 15px;
  margin-bottom: 30px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: #3498db;
}

.feature-card h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

/* Legacy feature items */
.feature-item {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ecf0f1;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.feature-item p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #34495e;
  margin-bottom: 0;
}

/* Impact Metrics */
.impact-metrics {
  margin: 60px 0;
}

.metric-item {
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #5a5a5a 0%, #6b6b6b 100%);
  color: white;
}

.metric-item:hover {
  transform: translateY(-5px);
}


.metric-number {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
  color: white;
}

.metric-purple .metric-number,
.metric-blue .metric-number,
.metric-green .metric-number {
  color: white;
}

.metric-description {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.metric-purple .metric-description,
.metric-blue .metric-description,
.metric-green .metric-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Portfolio Images */
.portfolio-images {
  margin-top: 4rem;
}

.app-mockup-container,
.laptop-mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.app-mockup,
.laptop-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-description {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 0;
}

/* Collaborate Section */
.collaborate-section {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid #ecf0f1;
}

.collaborate-section h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form-section {
  margin-top: 40px;
}

.contact-form .form-control {
  border: 2px solid #ecf0f1;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #3498db;
  box-shadow: none;
  outline: none;
}

.submit-btn {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

/* Office Info */
.office-info {
  padding-left: 40px;
}

.office-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
}

.office-item {
  margin-bottom: 30px;
}

.office-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.office-item p {
  font-size: 0.95rem;
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 0;
}

.office-item a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

.office-item a:hover {
  color: #2980b9;
}

/* Portfolio Layout with Sidebar */
.portfolio-layout {
  padding: 40px 0 80px;
  background-color: #f8f9fa;
}

/* Sidebar Styles */
.portfolio-sidebar {
  border-radius: 10px;
  position: sticky;
  top: 100px;
  margin-bottom: 30px;
}
.sidebar-section-card{
background: #ffffff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
padding: 30px 25px;
border-radius: 10px;
}
.sidebar-section {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sidebar-section h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.sidebar-section p {
  font-size: 0.95rem;
  color: #34495e;
  margin-bottom: 8px;
  line-height: 1.5;
}

.sidebar-section a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sidebar-section a:hover {
  color: #2980b9;
}

/* Sidebar CTA Button */
.sidebar-cta {
  margin-top: 20px;
  text-align: left;
}

.sidebar-cta .contact-btn {
  width: auto;
  text-align: center;
  justify-content: center;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-cta .contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.sidebar-cta .contact-btn .fa-arrow-right {
  margin-left: 8px;
}

/* Portfolio Content Area */
.portfolio-content {
  border-radius: 8px;
  padding: 40px 35px;
  margin-left: 20px;
}

/* Challenge Section Specific Styling */
.challenge-image-container {
  text-align: center;
  margin-top: 3rem;
}

.challenge-image-container img {
  max-width: 70%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.captcha-question{
  padding:5px;
}

.logo-px{
    width: 20px;
    height: 20px;
}

.logo-2px{
    width: 30px;
    height: 30px;
}


/* Responsive Design */
/* Tablet and small desktop screens */
@media (max-width: 1024px) {
  .portfolio-main-title {
    font-size: 2.6rem;
    margin-bottom: 50px;
    line-height: 1.2;
  }
  
  .monitor-screen {
    width: 480px;
    height: 300px;
  }
  
  .hero-image-container {
    margin: 50px 0;
  }
  
  .portfolio-layout {
    padding: 30px 0 70px;
  }
  
  .portfolio-content {
    padding: 35px 30px;
    margin-left: 15px;
  }
  
  .portfolio-sidebar {
    margin-bottom: 25px;
  }
  
  .sidebar-section-card {
    padding: 25px 20px;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }
  
  .section-content {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .feature-card {
    padding: 1.8rem;
    margin-bottom: 25px;
  }
  
  .feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
  }
  
  .feature-card p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  .metric-item {
    padding: 35px 18px;
    margin-bottom: 18px;
  }
  
  .metric-number {
    font-size: 3.5rem;
  }
  
  .metric-description {
    font-size: 0.95rem;
  }
  
  .monitor-frame {
    padding: 12px;
  }
  
  .monitor-stand::before {
    width: 50px;
    height: 25px;
  }
  
  .monitor-base {
    width: 120px;
    height: 16px;
  }
}

@media (max-width: 992px) {
  .portfolio-main-title {
    font-size: 2.8rem;
  }
  
  .monitor-screen {
    width: 500px;
    height: 320px;
  }
  
  .portfolio-content {
    margin-left: 0;
    margin-top: 30px;
  }
  .portfolio-sidebar {
    position: relative;
    top: auto;
  }
  
  .office-info {
    padding-left: 0;
    margin-top: 40px;
  }
}

/* Single vertical layout for screens below 991px */
@media (max-width: 991px) {
  /* Force single column layout */
  .portfolio-layout .container-fluid .row {
    flex-direction: column;
  }
  
  .portfolio-layout .col-lg-3,
  .portfolio-layout .col-md-4,
  .portfolio-layout .col-lg-9,
  .portfolio-layout .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  
  /* Global centering for all content below 991px */
  .portfolio-layout .row,
  .solution-features .row,
  .impact-metrics .row,
  .portfolio-images .row {
    justify-content: center;
    text-align: center;
  }
  
  /* Sidebar styling for mobile */
  .portfolio-sidebar {
    position: static;
    top: auto;
    margin-bottom: 30px;
    width: 100%;
    order: 1; /* Sidebar comes first */
  }
  
  .sidebar-section-card {
    padding: 20px 18px;
    margin-bottom: 0;
  }
    /* Content area styling for mobile */
  .portfolio-content {
    margin-left: 0;
    margin-top: 0;
    padding: 30px 20px;
    width: 100%;
    order: 2; /* Content comes after sidebar */
    text-align: center;
  }
  
  /* Center all content sections */
  .portfolio-section {
    text-align: center;
  }
  
  .section-content {
    text-align: center;
  }
  
  .section-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
  
  /* Typography adjustments */
  .portfolio-main-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.9rem;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .section-content {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
  }
  
  /* Monitor adjustments */
  .monitor-screen {
    width: 450px;
    height: 285px;
  }
  
  .hero-image-container {
    margin: 40px 0;
  }
  /* Feature cards single column */
  .solution-features {
    text-align: center;
  }
  
  .solution-features .row {
    justify-content: center;
    margin: 0;
  }
  
  .solution-features .col-lg-4,
  .solution-features .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  
  .feature-card {
    padding: 1.6rem;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  
  .feature-card h3 {
    font-size: 1.2rem;
    text-align: center;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
  }
    /* Metrics single column */
  .impact-metrics .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
  }
  
  .metric-item {
    padding: 30px 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .metric-number {
    font-size: 3.2rem;
  }
  
  .metric-description {
    font-size: 0.9rem;
  }
    /* Portfolio images single column */  /* Portfolio images single column */
  .portfolio-images {
    text-align: center;
    margin: 40px 0;
  }
  
  .portfolio-images .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
  }
  
  .portfolio-images .row {
    justify-content: center;
    margin: 0;
  }
  
  .portfolio-image {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  
  /* Additional image centering for any other image containers */
  .portfolio-section img,
  .section-content img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 100%;
    text-align: center;
  }
  
  /* Brief section images specifically */
  .section-content .row {
    justify-content: center;
    text-align: center;
    margin: 0;
  }
  
  .section-content .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
  }
  
  /* Buttons full width */
  .cta-button,
  .submit-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
    /* Sidebar CTA button */
  .sidebar-cta {
    text-align: center;
    margin-top: 20px;
  }
  
  .sidebar-cta .contact-btn {
    max-width: 220px;
    width: auto;
    padding: 10px 20px;
    font-size: 0.8rem;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .sidebar-cta .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Layout adjustments */
  .portfolio-layout {
    padding: 25px 0 60px;
  }
  
  .portfolio-hero-section {
    padding: 50px 0 40px;
  }
  
  .portfolio-section {
    margin-bottom: 50px;
  }
  
  /* Monitor frame adjustments */
  .monitor-frame {
    padding: 12px;
  }
  
  .monitor-stand::before {
    width: 48px;
    height: 24px;
  }
  
  .monitor-base {
    width: 115px;
    height: 15px;
  }
  
  /* Info items */
  .info-item {
    margin-bottom: 25px;
    text-align: center;
  }
  
  .info-item h6 {
    font-size: 0.85rem;
  }
  
  .info-item p {
    font-size: 0.95rem;
  }
  
  /* Collaborate section */
  .collaborate-section {
    margin-top: 60px;
    padding-top: 50px;
  }
  
  .collaborate-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
  }
    /* Challenge images */
  .challenge-image-container {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .challenge-image-container img {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
    /* App mockups */
  .app-mockup-container,
  .laptop-mockup-container {
    min-height: 250px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .app-mockup,
  .laptop-mockup {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .portfolio-main-title {
    font-size: 2rem;
    margin-bottom: 35px;
  }
  
  .monitor-screen {
    width: 380px;
    height: 240px;
  }
  
  .hero-image-container {
    margin: 35px 0;
  }
  
  .portfolio-layout {
    padding: 20px 0 50px;
  }
  
  .portfolio-sidebar {
    margin-bottom: 25px;
  }
  
  .sidebar-section-card {
    padding: 18px 15px;
  }
  
  .portfolio-content {
    padding: 25px 18px;
  }
  
  .section-title {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }
  
  .section-content {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .portfolio-hero-section {
    padding: 45px 0 35px;
  }
  
  .portfolio-section {
    margin-bottom: 45px;
  }
  
  .metric-number {
    font-size: 2.8rem;
  }
  
  .metric-item {
    padding: 25px 18px;
    margin-bottom: 18px;
  }
  
  .metric-description {
    font-size: 0.85rem;
  }
  
  .feature-item h3 {
    font-size: 1.4rem;
  }
  
  .feature-card {
    padding: 1.4rem;
    margin-bottom: 18px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.88rem;
  }
  
  .collaborate-section h3 {
    font-size: 1.6rem;
  }
  
  .sidebar-section {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }
  
  .sidebar-cta {
    margin-top: 18px;
  }
  
  .monitor-frame {
    padding: 10px;
  }
  
  .monitor-stand::before {
    width: 42px;
    height: 21px;
  }
  
  .monitor-base {
    width: 105px;
    height: 13px;
  }
  
  .cta-button,
  .submit-btn {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  
  .info-item h6 {
    font-size: 0.8rem;
  }
  
  .info-item p {
    font-size: 0.9rem;
  }
  
  .sidebar-section h6 {
    font-size: 0.8rem;
  }
    .sidebar-section p {
    font-size: 0.88rem;
  }
  
  .sidebar-cta .contact-btn {
    max-width: 200px;
    padding: 9px 18px;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .portfolio-main-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .monitor-screen {
    width: 300px;
    height: 190px;
  }
  
  .hero-monitor {
    transform: rotateX(0deg) rotateY(0deg);
  }
  
  .hero-monitor:hover {
    transform: rotateX(3deg) rotateY(-2deg) scale(1.01);
  }
  
  .portfolio-sidebar {
    padding: 20px 15px;
  }
  
  .sidebar-section-card {
    padding: 18px 15px;
  }
  
  .portfolio-content {
    padding: 25px 20px;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-content {
    font-size: 1rem;
  }
  
  .metric-number {
    font-size: 2.5rem;
  }
  
  .metric-item {
    padding: 25px 15px;
    margin-bottom: 15px;
  }
  
  .metric-description {
    font-size: 0.85rem;
  }
  
  .app-mockup-container,
  .laptop-mockup-container {
    min-height: 200px;
  }
  
  .cta-button,
  .submit-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  
  .feature-card {
    padding: 1.2rem;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.85rem;
  }
  
  .sidebar-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  
  .sidebar-cta {
    margin-top: 10px;
  }
  
  .hero-image-container {
    margin: 30px 0;
  }
  
  .monitor-frame {
    padding: 8px;
  }
  
  .monitor-stand::before {
    width: 40px;
    height: 20px;
  }
  
  .monitor-base {
    width: 100px;
    height: 12px;
  }
  
  .monitor-base::before {
    width: 5px;
    height: 30px;
    top: -30px;
  }
  
  .info-item {
    margin-bottom: 25px;
  }
  
  .info-item h6 {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
    .info-item p {
    font-size: 0.9rem;
  }
  
  .sidebar-cta .contact-btn {
    max-width: 180px;
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  
  .office-item {
    margin-bottom: 25px;
  }
  
  .office-item h5 {
    font-size: 1rem;
  }
  
  .office-item p {
    font-size: 0.9rem;
  }
  
  .collaborate-section {
    margin-top: 60px;
    padding-top: 50px;
  }
  
  .collaborate-section h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

/* Additional mobile-first improvements */
@media (max-width: 480px) {
  .portfolio-main-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .monitor-screen {
    width: 280px;
    height: 175px;
  }
  
  .hero-image-container {
    margin: 25px 0;
  }
  
  .portfolio-layout {
    padding: 15px 0 50px;
  }
  
  .portfolio-content {
    padding: 20px 15px;
  }
  
  .portfolio-sidebar {
    padding: 15px 12px;
  }
  
  .sidebar-section-card {
    padding: 15px 12px;
  }
  
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  
  .section-content {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 1rem;
    margin-bottom: 12px;
  }
  
  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-card p {
    font-size: 0.82rem;
    line-height: 1.4;
  }
  
  .metric-item {
    padding: 20px 12px;
    margin-bottom: 12px;
  }
  
  .metric-number {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .metric-description {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .monitor-frame {
    padding: 6px;
  }
  
  .monitor-stand::before {
    width: 35px;
    height: 18px;
  }
  
  .monitor-base {
    width: 90px;
    height: 10px;
  }
  
  .monitor-base::before {
    width: 4px;
    height: 25px;
    top: -25px;
  }
  
  .cta-button,
  .submit-btn {
    padding: 10px 18px;
    font-size: 0.75rem;
  }
  
  .sidebar-section {
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
  
  .sidebar-section h6 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
    .sidebar-section p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .sidebar-cta .contact-btn {
    max-width: 160px;
    padding: 8px 14px;
    font-size: 0.7rem;
  }
  
  .portfolio-hero-section {
    padding: 50px 0 60px;
  }
  
  .portfolio-section {
    margin-bottom: 50px;
  }
  
  .collaborate-section {
    margin-top: 50px;
    padding-top: 40px;
  }
  
  .collaborate-section h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  
  .app-mockup-container,
  .laptop-mockup-container {
    min-height: 150px;
  }
  
  .challenge-image-container {
    margin-top: 2rem;
  }
  
  .challenge-image-container img {
    max-width: 85%;
  }
}

/* Extra small screens - 320px and below */
@media (max-width: 320px) {
  .portfolio-main-title {
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  .monitor-screen {
    width: 250px;
    height: 160px;
  }
  
  .portfolio-content {
    padding: 15px 10px;
  }
  
  .portfolio-sidebar {
    padding: 12px 8px;
  }
  
  .sidebar-section-card {
    padding: 12px 8px;
  }
  
  .section-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .feature-card {
    padding: 0.8rem;
  }
  
  .feature-card h3 {
    font-size: 0.95rem;
  }
  
  .feature-card p {
    font-size: 0.8rem;
  }
  
  .metric-number {
    font-size: 2rem;
  }
    .metric-item {
    padding: 15px 8px;
  }
  
  .sidebar-cta .contact-btn {
    max-width: 140px;
    padding: 6px 12px;
    font-size: 0.65rem;
  }
  
  .cta-button,
  .submit-btn {
    padding: 8px 15px;
    font-size: 0.7rem;
  }
  
  .monitor-base {
    width: 80px;
    height: 8px;
  }
  
  .monitor-stand::before {
    width: 30px;
    height: 15px;
  }
}
/*--- font-family end ---*/
/*--- font-size start ---*/

@media only screen and (min-width: 1500px) {
  .mi-container {
    max-width: 1470px;
  }
}

@media only screen and (max-width: 991px) {
  .mi-container {
    width: 100%;
  }
}

@media only screen and (min-width: 1500px) {
  .container-fluid-60 {
    width: calc(100% - 90px);
    margin: 0 auto;
  }
}

.font-14 {
  font-size: 14px;
  line-height: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
a {
  margin: 0;
}
.br-40 {
  border-radius: 40px;
}

@media screen and (max-width: 1023px) {
  .br-40 {
    border-radius: 16px;
  }
}
.br-30 {
  border-radius: 30px;
}

@media screen and (max-width: 1023px) {
  .br-30 {
    border-radius: 16px;
  }
}

.br-24 {
  border-radius: 24px;
}

@media screen and (max-width: 1023px) {
  .br-24 {
    border-radius: 16px;
  }
}

.br-l-24 {
  border-radius: 0 0 24px 24px;
}

@media screen and (max-width: 1023px) {
  .br-l-24 {
    border-radius: 0 0 16px 16px;
  }
}

.br-20 {
  border-radius: 20px;
}

@media screen and (max-width: 1023px) {
  .br-20 {
    border-radius: 16px;
  }
}

.font-16 {
  font-size: 16px;
  line-height: 1.8rem;
}

.font-14 {
  font-size: 14px;
  line-height: 1.6rem;
}

.font-18 {
  font-size: 18px;
  line-height: 1.8rem;
}

@media screen and (max-width: 1599px) {
  .font-18 {
    font-size: 16px;
    line-height: 1.6rem;
  }
}

.font-24 {
  font-size: 24px;
  line-height: 2rem;
}

@media screen and (max-width: 1365px) {
  .font-24 {
    font-size: 22px;
    line-height: 1.9rem;
  }
}

@media screen and (max-width: 1199px) {
  .font-24 {
    font-size: 18px;
    line-height: 2rem;
  }
}

@media screen and (max-width: 1023px) {
  .font-24 {
    font-size: 18px;
    line-height: 1.8rem;
  }
}

.font-26 {
  font-size: 26px;
  line-height: 2rem;
}

@media screen and (max-width: 1365px) {
  .font-26 {
    font-size: 22px;
    line-height: 1.8rem;
  }
}

@media screen and (max-width: 991px) {
  .font-26 {
    font-size: 21px;
    line-height: 1.7rem;
  }
}

@media screen and (max-width: 575px) {
  .font-26 {
    font-size: 20px;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 340px) {
  .font-26 {
    font-size: 19px;
    line-height: 1.5rem;
  }
}

.font-22 {
  font-size: 22px;
  line-height: 2rem;
}

@media screen and (max-width: 1365px) {
  .font-22 {
    font-size: 21px;
    line-height: 1.8rem;
  }
}

@media screen and (max-width: 991px) {
  .font-22 {
    font-size: 20px;
    line-height: 1.7rem;
  }
}

@media screen and (max-width: 575px) {
  .font-22 {
    font-size: 18px;
    line-height: 1.5rem;
  }
}

.font-28 {
  font-size: 28px;
  line-height: 2.2rem;
}

@media screen and (max-width: 1199px) {
  .font-28 {
    font-size: 26px;
  }
}

@media screen and (max-width: 991px) {
  .font-28 {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .font-28 {
    font-size: 22px;
  }
}

.font-30 {
  font-size: 30px;
  line-height: 2.6rem;
}
@media screen and (min-width: 1200px) and (max-width: 1699px) {
  .font-30 {
    font-size: 28px;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 1199px) {
  .font-30 {
    font-size: 26px;
    line-height: 2.4rem;
  }
}

@media screen and (max-width: 991px) {
  .font-30 {
    font-size: 22px;
    line-height: 2rem;
  }
}

.font-32 {
  font-size: 32px;
  line-height: 2.8rem;
}

@media screen and (max-width: 1199px) {
  .font-32 {
    font-size: 26px;
    line-height: 2.6rem;
  }
}

@media screen and (max-width: 991px) {
  .font-32 {
    font-size: 24px;
    line-height: 2.2rem;
  }
}

.font-34 {
  font-size: 34px;
  line-height: 3rem;
}

@media screen and (max-width: 1199px) {
  .font-34 {
    font-size: 28px;
    line-height: 2.6rem;
  }
}

@media screen and (max-width: 991px) {
  .font-34 {
    font-size: 26px;
    line-height: 2.2rem;
  }
}

@media screen and (max-width: 575px) {
  .font-34 {
    font-size: 24px;
    line-height: 2.2rem;
  }
}

.font-36 {
  font-size: 36px;
  line-height: 3rem;
}

@media screen and (max-width: 1199px) {
  .font-36 {
    font-size: 28px;
    line-height: 2.6rem;
  }
}

@media screen and (max-width: 991px) {
  .font-36 {
    font-size: 26px;
    line-height: 2.2rem;
  }
}

@media screen and (max-width: 575px) {
  .font-36 {
    font-size: 24px;
    line-height: 2.2rem;
  }
}

.font-48 {
  font-size: 48px;
  line-height: 3.4rem;
  letter-spacing: -0.04rem;
}

@media screen and (max-width: 1599px) {
  .font-48 {
    font-size: 40px;
    line-height: 3.2rem;
  }
}

@media screen and (max-width: 1365px) {
  .font-48 {
    font-size: 36px;
    line-height: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  .font-48 {
    font-size: 34px;
    line-height: 2.6rem;
  }
}

@media screen and (max-width: 991px) {
  .font-48 {
    font-size: 32px;
    line-height: 2.4rem;
  }
}

@media screen and (max-width: 575px) {
  .font-48 {
    font-size: 28px;
    line-height: 2.3rem;
  }
}

.font-40 {
  font-size: 40px;
  line-height: 3.2rem;
  letter-spacing: -0.04rem;
}

@media screen and (max-width: 1599px) {
  .font-40 {
    font-size: 36px;
    line-height: 3.2rem;
  }
}

@media screen and (max-width: 1365px) {
  .font-40 {
    font-size: 34px;
    line-height: 3rem;
  }
}

@media screen and (max-width: 1199px) {
  .font-40 {
    font-size: 30px;
    line-height: 2.6rem;
  }
}

@media screen and (max-width: 991px) {
  .font-40 {
    font-size: 28px;
    line-height: 2.4rem;
  }
}

@media screen and (max-width: 575px) {
  .font-40 {
    font-size: 26px;
    line-height: 2.3rem;
  }
}

.font-72 {
  font-size: 72px;
}

@media only screen and (max-width: 1199px) {
  .font-72 {
    font-size: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .font-72 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .font-72 {
    font-size: 34px;
  }
}

.font-74 {
  font-size: 72px;
}

@media only screen and (max-width: 1199px) {
  .font-74 {
    font-size: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .font-74 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .font-74 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .font-74 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 575px) {
  .font-74 {
    font-size: 30px;
  }
}

.font-64 {
  font-size: 64px;
}

@media only screen and (max-width: 1199px) {
  .font-64 {
    font-size: 54px;
  }
}

@media only screen and (max-width: 991px) {
  .font-64 {
    font-size: 44px;
  }
}

@media only screen and (max-width: 767px) {
  .font-64 {
    font-size: 34px;
  }
}

.font-62 {
  font-size: 62px;
}

@media only screen and (max-width: 1199px) {
  .font-62 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .font-62 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .font-62 {
    font-size: 30px;
  }
}

.font-60 {
  font-size: 60px;
}

@media only screen and (max-width: 1199px) {
  .font-60 {
    font-size: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .font-60 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .font-60 {
    font-size: 32px;
  }
}

.font-50 {
  font-size: 50px;
}

@media only screen and (max-width: 1365px) {
  .font-50 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .font-50 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .font-50 {
    font-size: 30px;
  }
}

.font-54 {
  font-size: 54px;
  line-height: 60px;
}

@media only screen and (max-width: 1365px) {
  .font-54 {
    font-size: 40px;
    line-height: 46px;
  }
}

@media only screen and (max-width: 991px) {
  .font-54 {
    font-size: 34px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .font-54 {
    font-size: 30px;
    line-height: 36px;
  }
}

.font-80 {
  font-size: 80px;
  line-height: 1.2;
}

@media screen and (max-width: 1920px) {
  .font-80 {
    font-size: 60px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 991px) {
  .font-80 {
    font-size: 50px;
  }
}

@media screen and (max-width: 767px) {
  .font-80 {
    font-size: 40px;
  }
}

@media screen and (max-width: 575px) {
  .font-80 {
    font-size: 30px;
  }
}

.font-120 {
  font-size: 120px;
  line-height: 1.2;
}

@media screen and (max-width: 1199px) {
  .font-120 {
    font-size: 100px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 991px) {
  .font-120 {
    font-size: 80px;
  }
}

.poppins-thin {
  font-weight: 100;
}

.poppins-light {
  font-weight: 300;
}

.poppins-regular {
  font-weight: 400;
}

.poppins-medium {
  font-weight: 500;
}

.poppins-semibold {
  font-weight: 600;
}

.poppins-bold {
  font-weight: 700;
}

.bg-pink {
  background-color: #fff;
}

.bg-clr-dark-black {
  background-color: var(--clr-dark-black);
}

.bg-gray {
  background-color: #f0f0f0;
}

.bg-mi-dark {
  background-color: var(--clr-black);
}

.bg-purple {
  background-color: #fff;
}

.bg-white {
  background-color: var(--clr-white);
}

.bg-green {
  background-color: var(--clr-light-green);
}

.bg-orange {
  background-color: #fff;
}

.bg-blue {
  background-color: #fff;
}

.mi-bg-dark {
  background-color: var(--clr-black);
}

.bg-light-green {
  background-color: var(--clr-light-green);
}

.bg-off-white {
  background-color: var(--clr-off-white);
}

.bg-white-light {
  background-color: #f7f7f7;
}
.item-new-add {
  border: solid 1px #eeeeee;
}

.bg-grey-white {
  background-color: var(--clr-grey-white);
}

.bg-light-blue {
  background-color: #fff;
}

.bg-light-orenge {
  background-color: #fff;
}

.font-primary {
  color: var(--clr-black);
}

.font-white {
  color: var(--clr-white);
}

.font-blue-light {
  color: #3b5068;
}
.font-clr-red {
  color: #ed184f;
}

.bgg-primary {
  background-color: var(--clr-black);
}

.material-symbols-rounded {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-lightbrown {
  text-transform: uppercase;
  color: var(--clr-black);
  padding: 16px 25px;
  justify-content: center;
  border-radius: 30px;
  background: var(--clr-light-brown);
  display: inline-flex;
  position: relative;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    outline 0.3s ease;
  border: 1px solid #192020;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media screen and (max-width: 1599px) {
  .btn-lightbrown {
    padding: 12px 22px;
  }
}

@media screen and (max-width: 1199px) {
  .btn-lightbrown {
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .btn-lightbrown {
    padding: 10px 20px;
    gap: 6px;
  }
}

@media screen and (max-width: 350px) {
  .btn-lightbrown {
    padding: 10px;
  }
}

.btn-lightbrown::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

@media only screen and (max-width: 1199px) {
  .btn-lightbrown::before {
    transition: none;
  }
}

.btn-lightbrown span {
  position: relative;
}

.btn-lightbrown .icon::before {
  background-color: var(--clr-black);
}

.btn-lightbrown .icon,
.btn-lightbrown .material-symbols-rounded {
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .btn-lightbrown .icon,
  .btn-lightbrown .material-symbols-rounded {
    transform: rotate(45deg);
    transition: none;
  }
}
@media screen and (max-width: 767px) {
  .btn-lightbrown .icon,
  .btn-lightbrown .material-symbols-rounded {
    font-size: 20px;
  }
}

.btn-lightbrown:focus,
.btn-lightbrown:hover {
  color: #192020;
  box-shadow: inset 0 0 0 2px #fff;
  outline: none;
}

@media only screen and (max-width: 1199px) {
  .btn-lightbrown:focus,
  .btn-lightbrown:hover {
    color: #192020;
    box-shadow: none;
  }
}

.btn-lightbrown:focus::before,
.btn-lightbrown:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
@media only screen and (max-width: 1199px) {
  .btn-lightbrown:focus::before,
  .btn-lightbrown:hover::before {
    display: none;
  }
}

.btn-lightbrown:focus .icon,
.btn-lightbrown:hover .icon,
.btn-lightbrown:focus .material-symbols-rounded,
.btn-lightbrown:hover .material-symbols-rounded {
  transform: rotate(45deg);
}

.btn-lightbrown:focus .icon::before,
.btn-lightbrown:hover .icon::before {
  background-color: #fff;
}

.btn-lightbrown:focus .icon::before,
.btn-lightbrown:hover .icon::before {
  background-color: #192020;
}

.btn-black {
  text-transform: uppercase;
  color: #fff;
  padding: 16px 25px;
  justify-content: center;
  border-radius: 30px;
  background: #192020;
  display: inline-flex;
  position: relative;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    outline 0.3s ease;
  border: 1px solid #192020;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media screen and (max-width: 1599px) {
  .btn-black {
    padding: 12px 22px;
  }
}

@media screen and (max-width: 1199px) {
  .btn-black {
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .btn-black {
    padding: 10px 16px;
    gap: 6px;
  }
}

.btn-black--white-border {
  border: 1px solid #fff;
  transition:
    color 0.3s ease,
    box-shadow 0.6s ease;
}

.btn-black::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.btn-black span {
  position: relative;
}

@media screen and (max-width: 375px) {
  .btn-black span {
    font-size: 14px;
  }
}

.btn-black .icon::before {
  background-color: #fff;
}
@media only screen and (max-width: 1199px) {
  .btn-black .icon::before {
    transition: none;
  }
}

.btn-black .icon,
.btn-black .material-symbols-rounded {
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .btn-black .icon,
  .btn-black .material-symbols-rounded {
    transform: rotate(45deg);
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .btn-black .icon,
  .btn-black .material-symbols-rounded {
    font-size: 20px;
  }
}

.btn-black:focus,
.btn-black:hover {
  color: #192020;
  box-shadow: inset 0 0 0 2px #fff;
}

@media only screen and (max-width: 1199px) {
  .btn-black:focus,
  .btn-black:hover {
    color: #fff;
    box-shadow: none;
  }
}

.btn-black:focus::before,
.btn-black:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

@media only screen and (max-width: 1199px) {
  .btn-black:focus::before,
  .btn-black:hover::before {
    display: none;
  }
}

.btn-black:focus .icon,
.btn-black:hover .icon,
.btn-black:focus .material-symbols-rounded,
.btn-black:hover .material-symbols-rounded {
  transform: rotate(45deg);
}

.btn-black:focus .icon::before,
.btn-black:hover .icon::before {
  background-color: #fff;
}

.btn-black:focus .icon::before,
.btn-black:hover .icon::before {
  background-color: #192020;
}

@media only screen and (max-width: 1199px) {
  .btn-black:focus .icon::before,
  .btn-black:hover .icon::before {
    background-color: #fff;
  }
}

.btn-white {
  text-transform: uppercase;
  color: #192020;
  padding: 15px 25px 12px 25px;
  justify-content: center;
  border-radius: 30px;
  background: #fff;
  display: inline-flex;
  position: relative;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  border: 1px solid #fff;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    outline 0.3s ease;
}

@media screen and (max-width: 1599px) {
  .btn-white {
    padding: 12px 22px 8px 22px;
  }
}

@media screen and (max-width: 1199px) {
  .btn-white {
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .btn-white {
    padding: 10px 20px 7px 20px;
    gap: 6px;
  }
}
@media screen and (max-width: 640px) {
  .btn-white {
    padding: 10px 16px 7px 16px;
    gap: 6px;
  }
}
@media screen and (max-width: 575px) {
  .btn-white {
    gap: 3px;
  }
}

.btn-white--black-border {
  border: 1px solid #192020;
  transition:
    color 0.3s ease,
    box-shadow 0.6s ease;
}

.btn-white::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #192020;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.btn-white span {
  position: relative;
}

.btn-white .icon {
  transition: transform 0.3s ease;
}

.btn-white .material-symbols-rounded {
  transition: transform 0.3s ease;
}

@media screen and (max-width: 1199px) {
  .btn-white .icon,
  .btn-white .material-symbols-rounded {
    transition: none;
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .btn-white .material-symbols-rounded {
    font-size: 20px;
    transform: rotate(45deg);
  }
}

.btn-white:focus .icon::before,
.btn-white:hover .icon::before {
  background-color: #fff;
}
@media only screen and (max-width: 1199px) {
  .btn-white:focus .icon::before,
  .btn-white:hover .icon::before {
    background-color: #192020;
    transition: none;
  }
}

.btn-white:focus,
.btn-white:hover {
  color: #fff;
  box-shadow: inset 0 0 0 2px #192020;
}

@media only screen and (max-width: 1199px) {
  .btn-white:focus,
  .btn-white:hover {
    color: #192020;
    box-shadow: none;
  }
}

.btn-white:focus::before,
.btn-white:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

@media only screen and (max-width: 1199px) {
  .btn-white:focus::before,
  .btn-white:hover::before {
    display: none;
  }
}

.btn-white:focus .icon,
.btn-white:hover .icon,
.btn-white:focus .material-symbols-rounded,
.btn-white:hover .material-symbols-rounded {
  transform: rotate(45deg);
}

.border-black {
  border: 1px solid var(--clr-dark-black);
}

.link {
  color: #ed184f;
  text-decoration: underline;
}

.link:hover {
  color: #ed184f;
  text-decoration: underline;
}

.link-black,
.link-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-white:hover,
.link-white:focus {
  outline: none;
}

.link-black .icon::before,
.link-white .icon::before {
  background-color: #192020;
  opacity: 0.5;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

@media screen and (max-width: 767px) {
  .link-black .icon::before,
  .link-white .icon::before {
    transform: rotate(45deg);
  }
}

.link-black:hover .icon::before,
.link-black:focus .icon::before,
.link-white:hover .icon::before,
.link-white:focus .icon::before {
  opacity: 1;
  transform: rotate(45deg) scale(1.05);
}

.link-black {
  color: #192020;
}

.link-black .material-symbols-rounded {
  color: #192020;
  font-size: 22px;
}

.link-dashed {
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px dashed #303636;
  color: #192020;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 18px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

@media screen and (max-width: 767px) {
  .link-dashed {
    padding: 6px 10px;
  }
}

.link-dashed .arrow {
  opacity: 0.5;
  font-size: 20px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .link-dashed .arrow {
    transform: rotate(45deg);
  }
}

.link-dashed .material-symbols-rounded.mi-icon {
  font-size: 18px;
}

.link-dashed:hover {
  background-color: #192020;
  color: #fff;
}

.link-dashed:hover .icon::before {
  background-color: #fff;
}

.link-dashed:hover .arrow {
  opacity: 1;
  color: #fff;
  transform: rotate(45deg);
}

.link-dashed--solid {
  border: 1px solid #303636;
}

.link-dashed.link-dashed--solid.font-white .icon-check-dark::before {
  background-color: #fff;
}

.font-12 {
  font-size: 12px;
  line-height: 1rem;
}

.font-20 {
  font-size: 1.25rem;
  line-height: 1.875rem;
}

@media screen and (max-width: 767px) {
  .font-20 {
    font-size: 18px;
    line-height: 1.8rem;
  }
}

.border-black {
  border: 1px solid var(--clr-dark-black);
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-100 {
  margin-bottom: 100px;
}
/* ############################### product page css end ############################### */

/*--- var css start ---*/
.ptb-90 {
  padding: 90px 0;
}

@media screen and (max-width: 1599px) {
  .ptb-90 {
    padding: 70px 0;
  }
}

@media screen and (max-width: 1199px) {
  .ptb-90 {
    padding: 55px 0;
  }
}

@media screen and (max-width: 991px) {
  .ptb-90 {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .ptb-90 {
    padding: 45px 0;
  }
}

@media screen and (max-width: 575px) {
  .ptb-90 {
    padding: 35px 0;
  }
}

.pt-90 {
  padding-top: 90px;
}

@media screen and (max-width: 1599px) {
  .pt-90 {
    padding-top: 70px;
  }
}

@media screen and (max-width: 1199px) {
  .pt-90 {
    padding-top: 55px;
  }
}

@media screen and (max-width: 991px) {
  .pt-90 {
    padding-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 45px;
  }
}

@media screen and (max-width: 575px) {
  .pt-90 {
    padding-top: 35px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}

@media screen and (max-width: 1599px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 1199px) {
  .pb-90 {
    padding-bottom: 55px;
  }
}

@media screen and (max-width: 991px) {
  .pb-90 {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 45px;
  }
}

@media screen and (max-width: 575px) {
  .pb-90 {
    padding-bottom: 35px;
  }
}

.ptb-cs-90 {
  padding: 90px 0;
}

@media screen and (max-width: 1599px) {
  .ptb-cs-90 {
    padding: 70px 0;
  }
}

@media screen and (max-width: 1199px) {
  .ptb-cs-90 {
    padding: 55px 0;
  }
}

@media screen and (max-width: 991px) {
  .ptb-cs-90 {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .ptb-cs-90 {
    padding: 35px 0;
  }
}

@media screen and (max-width: 575px) {
  .ptb-cs-90 {
    padding: 35px 0;
  }
}

/* ############################# home page css start ############################ */
/*--- Hero section start ---*/

.homehero-section {
  position: relative;
}
.hero-section {
  height: calc(100vh - 80px);
}

@media screen and (max-width: 1599px) {
  .hero-section {
    height: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .hero-section {
    height: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .hero-section {
    height: 100%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1699px) {
  .hero-section {
    height: 100%;
  }

  .hero-section .home-hero-parent {
    margin-bottom: 50px;
  }
}
.hero-section.homehero-section .container-fluid {
  position: relative;
  z-index: 2;
}
.hero-section.homehero-section {
  overflow: hidden;
}

.hero-section.homehero-section .img-bg-div {
  position: absolute;
  width: 100%;
  height: calc(100vh - 80px);
  top: 0;
}
@media only screen and (max-width: 1599px) {
  .hero-section.homehero-section .img-bg-div {
    height: 100%;
  }
}
.hero-section.homehero-section .img-bg-div img {
  object-position: top -9.5vw left 0vw;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.hero-section .container-fluid {
  height: 100%;
}

.hero-section .container-fluid .row {
  height: 100%;
}

.hero-section .home-hero-banner-main {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-section .home-hero-banner-main .home-hero-banner {
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 1599px) {
  .hero-section .home-hero-banner-main .home-hero-banner {
    display: block;
    margin: 50px 0;
  }
}

@media screen and (max-width: 1365px) {
  .hero-section .home-hero-banner-main .home-hero-banner {
    display: block;
    margin: 50px 0;
  }
}

@media screen and (max-width: 1199px) {
  .hero-section .home-hero-banner-main .home-hero-banner {
    display: block;
    margin: 50px 0;
  }
}

@media screen and (max-width: 991px) {
  .hero-section .home-hero-banner-main .home-hero-banner {
    display: block;
    margin: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .hero-section .home-hero-banner-main .home-hero-banner {
    margin: 20px 0;
  }
}

.hero-section .home-hero-banner-main .home-hero-banner .center-hero-content {
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.hero-section .home-hero-banner-main .home-hero-banner .swiper-container .swiper-slide,
.hero-section .home-hero-banner-main .home-hero-banner .swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.hero-section .home-hero-banner-main .home-hero-banner .font-80 {
  margin: 20px 0 8px;
}

@media screen and (max-width: 1365px) {
  .hero-section .home-hero-banner-main .home-hero-banner .font-80 {
    font-size: 60px;
    line-height: 1.3;
    letter-spacing: -0.04rem;
    margin: 15px 0 5px;
    display: block;
  }
}

@media screen and (max-width: 1365px) {
  .hero-section .home-hero-banner-main .home-hero-banner .font-80 {
    font-size: 50px;
    line-height: 1.3;
    letter-spacing: -0.04rem;
    margin: 15px 0 5px;
    display: block;
  }
}

@media screen and (max-width: 1199px) {
  .hero-section .home-hero-banner-main .home-hero-banner .font-80 {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: -0.04rem;
    margin: 15px 0 0;
  }
}

@media screen and (max-width: 767px) {
  .hero-section .home-hero-banner-main .home-hero-banner .font-80 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.05rem;
    margin: 0;
  }
}

@media screen and (max-width: 575px) {
  .hero-section .home-hero-banner-main .home-hero-banner .font-80 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.05rem;
    padding-bottom: 0 !important;
  }
}

.hero-section .home-hero-banner-main .home-hero-banner p {
  padding-right: 15px;
  padding-left: 15px;
  max-width: 1024px;
  margin: 15px auto 20px;
}

.hero-section .home-hero-banner-main .home-hero-banner .font-24 {
  font-size: 24px;
  line-height: 2.2rem;
}

@media screen and (max-width: 1599px) {
  .hero-section .home-hero-banner-main .home-hero-banner .font-24 {
    font-size: 18px;
    line-height: 2rem;
  }
}

@media screen and (max-width: 1023px) {
  .hero-section .home-hero-banner-main .home-hero-banner .font-24 {
    font-size: 18px;
    line-height: 1.8rem;
  }
}

.hero-section .home-hero-banner-main .home-hero-banner .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #7f7f7f;
}

.hero-section .home-hero-banner-main .home-hero-banner .swiper-pagination-bullet-active {
  background-color: var(--clr-black);
}

.hero-section .home-hero-banner-main .home-hero-banner .swiper-pagination-bullet-active:focus {
  outline: none;
}

.hero-section .home-hero-banner-main .home-hero-banner .swiper-pagination {
  position: absolute;
  bottom: 3vh;
  display: none;
}

@media only screen and (min-width: 1199px) {
  .hero-section .home-hero-banner-main .home-hero-banner .swiper-pagination {
    display: block;
  }
}

.hero-section .home-hero-banner-main .hero-tabs .nav-tabs {
  background: #d0bfff;
  border-radius: 30px;
  padding: 5px 5px 6px 5px;
  display: inline-flex;
}

.hero-section .home-hero-banner-main .hero-tabs .nav-tabs .nav-item {
  border: none;
  outline: none;
}

.hero-section .home-hero-banner-main .hero-tabs .nav-tabs .nav-link {
  border-radius: 30px;
  border: none;
  outline: none;
}

.hero-section .home-hero-banner-main .hero-tabs .nav-tabs .nav-link:hover {
  color: var(--clr-black);
}

.hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child {
  max-width: 1080px;
  margin: 25px auto 20px;
}

.hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul li {
  border: 1px solid rgb(232, 232, 232);
  padding: 8px 12px 8px 10px;
  border-radius: 99em;
  margin: 0 6px 8px 0;
  display: inline-flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul li {
    width: 100%;
    border-radius: 14px;
  }
}

.hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul.home-banner-links li {
  border: none;
  padding: 0;
  border-radius: 0;
  transition: all 0.3s ease-in;
}

@media only screen and (max-width: 767px) {
  .hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul.home-banner-links li {
    border-radius: 0;
  }
}

.hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul.home-banner-links li a {
  border: 1px solid rgb(232, 232, 232);
  padding: 8px 12px 8px 10px;
  border-radius: 99em;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease-in;
  background-color: var(--clr-white);
}

@media only screen and (max-width: 767px) {
  .hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul.home-banner-links li a {
    border-radius: 14px;
  }
}

.hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul.home-banner-links li a:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
  transition: all 0.3s ease-in;
}
.hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul.home-banner-links li a:hover .icon:before {
  background-color: var(--clr-white);
}

.hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul li .material-symbols-rounded {
  font-size: 20px;
  margin-right: 5px;
}

.hero-section .home-hero-banner-main .hero-tabs .tab-parent .tab-child ul li .icon {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

.hero-section .home-hero-banner-main .our-trusted-clients {
  margin-bottom: 20px;
  background-color: var(--clr-black);
  padding: 30px 20px 22px;
}

.hero-section .home-hero-banner-main .our-trusted-clients .clientSwiper {
  margin-top: 25px;
}

.hero-section .home-hero-banner-main .our-trusted-clients .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

.hero-section .home-hero-banner-main .our-trusted-clients .swiper-slide .clients-logo img {
  aspect-ratio: auto 133/66;
  height: auto;
}

.hero-section .heroSwiper {
  max-width: 1440px;
  margin: 0 auto 1px;
}

@media only screen and (min-width: 1366px) and (max-width: 1599px) {
  .hero-section .heroSwiper {
    max-width: 1400px;
    margin: 0 auto 1px;
  }
}

@media only screen and (max-width: 1365px) {
  .hero-section .heroSwiper {
    max-width: 1100px;
    margin: 0 auto 1px;
  }
}

.hero-section .heroSwiper .tag-line {
  padding: 10px 15px;
  border-radius: 99em;
}

/*--- Hero section end ---*/
/*------ home page css end ------*/
.our-work-main {
  position: relative;
}

.our-work-main .mt-80 {
  margin-top: 80px;
}

@media screen and (max-width: 1599px) {
  .our-work-main .mt-80 {
    margin-top: 70px;
  }
}

@media screen and (max-width: 1199px) {
  .our-work-main .mt-80 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 991px) {
  .our-work-main .mt-80 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .our-work-main .mt-80 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .mt-80 {
    margin-top: 20px;
  }
}

.our-work-main .swiper-slide {
  height: auto;
}

.our-work-main .our-work {
  display: flex;
  gap: 20px;
  width: 100%;
  grid-column-gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
  min-height: 100%;
}

@media screen and (max-width: 767px) {
  .our-work-main .our-work {
    padding: 15px;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .our-work {
    display: block;
    padding: 15px;
    margin-bottom: 70px;
  }
}

.our-work-main .our-work .our-work-left {
  width: 55%;
}

.our-work-main .our-work .our-work-left .portfolio-img img {
  aspect-ratio: auto 760/570;
  height: auto;
}

@media screen and (min-width: 1199px) {
  .our-work-main .our-work .our-work-left .portfolio-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 1599px) {
  .our-work-main .our-work .our-work-left {
    width: 45%;
  }
}

@media screen and (max-width: 1365px) {
  .our-work-main .our-work .our-work-left {
    width: 40%;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .our-work .our-work-left {
    width: 100%;
  }
}

.our-work-main .our-work .our-work-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media screen and (max-width: 1599px) {
  .our-work-main .our-work .our-work-right {
    width: 55%;
  }
}

@media screen and (max-width: 1365px) {
  .our-work-main .our-work .our-work-right {
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .our-work-right {
    position: relative;
  }

  .our-work-right span.font-14.poppins-normal.font-primary.font-white {
    position: absolute;
    top: 6px;
    right: 4px;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .our-work .our-work-right {
    width: 100%;
  }
}

.our-work-main .our-work .our-work-right hr {
  border-color: var(--clr-black);
  opacity: 0.1;
}

@media screen and (max-width: 1023px) {
  .our-work-main .our-work .our-work-right .design-development {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin: 0 0 8px 0;
  }
}

.our-work-main .our-work .our-work-right .design-development li {
  padding: 8px 15px;
  display: inline-block;
  border-radius: 99em;
  margin: 0 6px 8px 0;
}

.our-work-main .our-work .our-work-right .design-development li:nth-child(3n-2) {
  background-color: cornflowerblue;
}

.our-work-main .our-work .our-work-right .design-development li:nth-child(3n-1) {
  background-color: gold;
}

.our-work-main .our-work .our-work-right .design-development li:nth-child(3n) {
  background-color: var(--clr-light-green);
}

.our-work-main .our-work .app-features {
  background-color: #f7f7f7;
  border-radius: 24px;
  padding: 20px;
}

@media screen and (max-width: 1199px) {
  .our-work-main .our-work .app-features ul {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .our-work .app-features ul {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

.our-work-main .our-work .app-features ul li {
  border: 1px dashed var(--clr-black);
  padding: 8px 12px 8px 10px;
  border-radius: 99em;
  margin: 0 6px 8px 0;
  display: inline-flex;
  align-items: center;
}

.our-work-main .our-work .app-features ul li span {
  height: 24px;
  width: 24px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.our-work-main .our-work .app-features ul li .material-symbols-rounded {
  font-size: 20px;
}

.our-work-main .our-work .app-features ul li .icon {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}

.our-work-main .our-work .btn-black {
  max-width: 170px;
}

.our-work-main .swipe-btn-outer {
  display: flex;
  justify-content: end;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  z-index: 2;
}

@media only screen and (max-width: 1365px) {
  .our-work-main .swipe-btn-outer {
    height: 48px;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .swipe-btn-outer {
    bottom: 0;
    right: 15px;
  }
}

.our-work-main .swipe-btn-outer .com-btn {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-black);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  top: 10px;
  left: auto;
  right: auto;
}

@media only screen and (max-width: 1365px) {
  .our-work-main .swipe-btn-outer .com-btn {
    height: 48px;
    width: 48px;
  }
}

.our-work-main .swipe-btn-outer .com-btn:hover,
.our-work-main .swipe-btn-outer .com-btn:focus {
  outline: none;
}

.our-work-main .swipe-btn-outer .com-btn span {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-black);
}

.our-work-main .swipe-btn-outer .com-btn .icon {
  position: relative;
  transition: color 0.3s;
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 1199px) {
  .our-work-main .swipe-btn-outer .com-btn .icon {
    transition: none;
  }
}

.our-work-main .swipe-btn-outer .com-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-black);
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .our-work-main .swipe-btn-outer .com-btn:before {
    transition: none;
  }
}

.our-work-main .swipe-btn-outer .com-btn:after {
  display: none;
}

.our-work-main .swipe-btn-outer .com-btn:hover span {
  color: var(--clr-white);
  position: relative;
}

.our-work-main .swipe-btn-outer .com-btn:hover .icon {
  position: relative;
}
.our-work-main .swipe-btn-outer .com-btn:hover .icon:before {
  background-color: #ffffff;
}

@media only screen and (max-width: 1199px) {
  .our-work-main .swipe-btn-outer .com-btn:hover .icon:before,
  .our-work-main .swipe-btn-outer .com-btn:focus .icon:before {
    transition: none;
  }
}

.our-work-main .swipe-btn-outer .com-btn:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.modern-it-services .nav {
  border-bottom: 1px solid rgba(25, 32, 32, 0.2);
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .modern-it-services .nav {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

@media only screen and (max-width: 767px) {
  .modern-it-services .nav::-webkit-scrollbar {
    width: 0;
    display: none;
  }
}

.modern-it-services .nav .nav-item {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .modern-it-services .nav .nav-item {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.modern-it-services .nav .nav-item .nav-link {
  width: 100%;
  color: #0f1010;
  opacity: 0.7;
  /*color: var(--clr-black);*/
  /*opacity: 0.6;*/
  position: relative;
  padding: 0.8rem 1rem;
}

@media screen and (max-width: 1599px) {
  .modern-it-services .nav .nav-item .nav-link {
    padding: 0.8rem 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .modern-it-services .nav .nav-item .nav-link {
    padding: 0.8rem 2rem;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .modern-it-services.home-page .nav .nav-item .nav-link {
    white-space: nowrap;
  }
}

.modern-it-services .nav .nav-item .nav-link:focus {
  outline: none;
}

.modern-it-services .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0rem;
  height: 1px;
  border: 1px solid var(--clr-black);
  opacity: 0;
  left: 0;
}

.modern-it-services .nav .nav-item .nav-link.active {
  border-radius: 0;
  opacity: 1;
  color: var(--clr-black);
  background-color: transparent;
}

.modern-it-services .nav .nav-item .nav-link.active::before {
  opacity: 1;
}

.modern-it-services .services-inner {
  margin: 25px 0 0;
  padding: 30px;
  border-radius: 24px;
}

@media screen and (max-width: 1199px) {
  .modern-it-services .services-inner {
    padding: 25px 15px;
  }
}

@media screen and (max-width: 1023px) {
  .modern-it-services .services-inner {
    padding: 20px 15px;
    margin: 20px 0 0;
  }
}

.modern-it-services .services-inner .services-title {
  position: relative;
  overflow: hidden;
}

.modern-it-services .services-inner .services-title::before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--clr-black);
  transform: translateX(-100%);
  transition: all 0.3s;
}

.modern-it-services .services-inner:hover .services-title::before {
  transform: translateX(100%);
}

.modern-it-services .services-inner p a {
  color: var(--clr-blue);
  text-decoration: underline;
}

.modern-it-services .more-services {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}

@media screen and (max-width: 767px) {
  .modern-it-services .more-services {
    grid-template-columns: 1fr;
  }
}

.modern-it-services .more-services .more-services-inner {
  padding: 30px;
  border-bottom: 1px solid rgba(25, 32, 32, 0.2);
}

@media screen and (max-width: 1199px) {
  .modern-it-services .more-services .more-services-inner {
    padding: 25px 15px;
  }
}

@media screen and (max-width: 1023px) {
  .modern-it-services .more-services .more-services-inner {
    padding: 20px 0;
  }
}

@media screen and (min-width: 767px) {
  .modern-it-services .more-services .more-services-inner:nth-last-of-type(2) {
    border: none;
  }

  .modern-it-services .more-services .more-services-inner:nth-last-of-type(1) {
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .modern-it-services .more-services .more-services-inner:nth-last-of-type(1) {
    border: none;
    padding-bottom: 0;
  }
}

/*--- Industry Focused Insights Start ---*/
.industry-focused-insights .nav {
  border-bottom: 1px solid rgba(25, 32, 32, 0.2);
  margin: 22px 0 30px 0;
}

@media screen and (max-width: 1599px) {
  .industry-focused-insights .nav {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin: 0 0 15px 0;
  }
}

@media screen and (max-width: 1199px) {
  .industry-focused-insights .nav::-webkit-scrollbar {
    width: 0;
    display: none;
  }
}

.industry-focused-insights .nav .nav-item {
  flex-grow: 1;
}

@media screen and (max-width: 1599px) {
  .industry-focused-insights .nav .nav-item {
    text-align: center;
  }
}

.industry-focused-insights .nav .nav-item .nav-link {
  width: 100%;
  color: #0f1010;
  opacity: 0.7;
  /*color: var(--clr-black);*/
  /*opacity: 0.6;*/
  position: relative;
  padding: 0.8rem 1rem;
}

@media screen and (max-width: 1599px) {
  .industry-focused-insights .nav .nav-item .nav-link {
    padding: 0.8rem 2rem;
  }
}

.industry-focused-insights .nav .nav-item .nav-link:focus {
  outline: none;
}

.industry-focused-insights .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0rem;
  height: 1px;
  border: 1px solid var(--clr-black);
  opacity: 0;
  left: 0;
}

.industry-focused-insights .nav .nav-item .nav-link.active {
  border-radius: 0;
  opacity: 1;
  color: var(--clr-black);
  background-color: transparent;
}

.industry-focused-insights .nav .nav-item .nav-link.active::before {
  opacity: 1;
}

.industry-focused-insights .more-industry {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
}

@media screen and (min-width: 1023px) and (max-width: 1599px) {
  .industry-focused-insights .more-industry {
    grid-column-gap: 25px;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .industry-focused-insights .more-industry {
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    overflow: auto;
    grid-column-gap: 20px;
    padding: 0 0 15px 2px;
  }
}

@media screen and (max-width: 575px) {
  .industry-focused-insights .more-industry {
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    overflow: auto;
    grid-column-gap: 20px;
    padding: 0 0 15px 2px;
  }
}

@media screen and (max-width: 575px) {
  .industry-focused-insights .more-industry .card-main {
    min-width: 85%;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .industry-focused-insights .more-industry .card-main {
    min-width: 315px;
  }
}

.industry-focused-insights .more-industry .card-main .card-images {
  height: auto;
  width: 100%;
  max-width: 573px;
  position: relative;
  overflow: hidden;
}

.industry-focused-insights .more-industry .card-main .card-images img {
  width: 100%;
  aspect-ratio: auto 573/350;
  height: auto;
}

.font-primary {
  color: var(--clr-black);
}

.font-white {
  color: var(--clr-white);
}

.industry-focused-insights-dark {
  background-color: var(--clr-black);
}

.industry-focused-insights-dark .text-center .font-primary {
  color: var(--clr-white);
}

.industry-focused-insights-dark .industry-focused-insights .nav .nav-item .nav-link {
  color: var(--clr-white);
}

.industry-focused-insights-dark .industry-focused-insights .nav .nav-item .nav-link.active {
  color: var(--clr-white);
}

.industry-focused-insights-dark .industry-focused-insights .nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.industry-focused-insights-dark .industry-focused-insights .nav .nav-item .nav-link::before {
  border: 1px solid var(--clr-white);
}

.industry-focused-insights-dark .card-content .font-primary {
  color: var(--clr-white);
}
/*--- Industry Focused Insights End ---*/
/*--- section case study Start ---*/
.section-case-study {
  background-color: var(--clr-black);
}

.section-case-study.whitebg {
  background-color: var(--clr-off-white);
}

.section-case-study .btn-black.btn-black--white-border {
  clip-path: none;
}

.section-case-study .our-case-study-main {
  position: relative;
}

.section-case-study .our-case-study-main .mt-40 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .section-case-study .our-case-study-main .mt-40 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 575px) {
  .section-case-study .our-case-study-main .mt-40 {
    margin-top: 20px;
  }
}

.section-case-study .our-case-study-main .custom-border {
  border-color: #e6e6e6;
  background-color: #e6e6e6;
  opacity: 0.1;
  margin: 1rem 0 1.1rem;
  height: 1px;
}
.section-case-study.whitebg .our-case-study-main .custom-border {
  background-color: var(--clr-black);
}

.section-case-study .our-case-study-main .our-work {
  display: flex;
  gap: 20px;
  width: 100%;
  grid-column-gap: 20px;
  padding: 20px;
  background-color: #252b2b;
  border: 1px solid #3b4040;
  border-radius: 30px;
}

.usa .section-case-study .our-case-study-main .our-work {
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .section-case-study .our-case-study-main .our-work {
    padding: 15px;
  }
}

@media screen and (max-width: 575px) {
  .section-case-study .our-case-study-main .our-work {
    display: block;
    padding: 15px;
  }
}

.section-case-study .our-case-study-main .our-work .our-work-left {
  width: 55%;
}

.section-case-study .our-case-study-main .our-work .our-work-left .portfolio-img img {
  aspect-ratio: auto 1520/1140;
  height: auto;
}

@media screen and (min-width: 1199px) {
  .section-case-study .our-case-study-main .our-work .our-work-left .portfolio-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 1599px) {
  .section-case-study .our-case-study-main .our-work .our-work-left {
    width: 45%;
  }
}

@media screen and (max-width: 1365px) {
  .section-case-study .our-case-study-main .our-work .our-work-left {
    width: 40%;
  }
}

@media screen and (max-width: 575px) {
  .section-case-study .our-case-study-main .our-work .our-work-left {
    width: 100%;
  }
}

.section-case-study .our-case-study-main .our-work .our-work-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media screen and (max-width: 1599px) {
  .section-case-study .our-case-study-main .our-work .our-work-right {
    width: 55%;
  }
}

@media screen and (max-width: 1365px) {
  .section-case-study .our-case-study-main .our-work .our-work-right {
    width: 60%;
  }
}

@media screen and (max-width: 575px) {
  .section-case-study .our-case-study-main .our-work .our-work-right {
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .section-case-study .our-case-study-main .our-work .our-work-right .design-development {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin: 0 0 8px 0;
  }
}

@media screen and (max-width: 767px) {
  .section-case-study .our-case-study-main .our-work .our-work-right .design-development {
    display: none;
  }
}

.section-case-study .our-case-study-main .our-work .our-work-right .design-development li {
  padding: 8px 15px;
  display: inline-block;
  border-radius: 99em;
  margin: 0 6px 8px 0;
}

.section-case-study .our-case-study-main .our-work .our-work-right .design-development li:nth-child(6n + 1),
.section-case-study .our-case-study-main .our-work .our-work-right .design-development li:nth-child(6n + 5) {
  background-color: cornflowerblue;
}

.section-case-study .our-case-study-main .our-work .our-work-right .design-development li:nth-child(6n + 2),
.section-case-study .our-case-study-main .our-work .our-work-right .design-development li:nth-child(6n + 4) {
  background-color: gold;
}

.section-case-study .our-case-study-main .our-work .our-work-right .design-development li:nth-child(6n + 3),
.section-case-study .our-case-study-main .our-work .our-work-right .design-development li:nth-child(6n + 6) {
  background-color: var(--clr-light-green);
}

.section-case-study .our-case-study-main .our-work .app-features {
  background-color: #192020;
  border-radius: 24px;
  padding: 20px;
}

.section-case-study .our-case-study-main.withoutbtn .swiper-slide .our-work {
  padding-bottom: 80px;
}

@media screen and (max-width: 1199px) {
  .section-case-study .our-case-study-main .our-work .app-features ul {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 575px) {
  .section-case-study .our-case-study-main .our-work .app-features ul {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

.section-case-study .our-case-study-main .our-work .app-features ul li {
  border: 1px dashed var(--clr-white);
  padding: 8px 12px 8px 10px;
  border-radius: 99em;
  margin: 0 6px 8px 0;
  display: inline-flex;
  align-items: center;
}

.section-case-study .our-case-study-main .our-work .app-features ul li span {
  height: 24px;
  width: 24px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.section-case-study .our-case-study-main .our-work .app-features ul li .material-symbols-rounded {
  font-size: 20px;
}
.section-case-study .our-case-study-main .our-work .app-features ul li i {
  margin-right: 4px;
}

.section-case-study .our-case-study-main .our-work .app-features ul li .icon {
  width: 20px;
  height: 20px;
}
.section-case-study .our-case-study-main .our-work .app-features ul li .icon:before {
  background-color: var(--clr-white);
}
.section-case-study.section-case-study-light .our-case-study-main .our-work .app-features ul li .icon:before {
  background-color: var(--clr-black);
}
.section-case-study .our-case-study-main .our-work .btn-black {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (max-width: 375px) {
  .section-case-study .our-case-study-main .our-work .btn-black {
    padding: 8px 15px;
  }
}

.section-case-study .our-case-study-main .our-work .btn-white {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (max-width: 375px) {
  .section-case-study .our-case-study-main .our-work .btn-white {
    padding: 9px 5px 6px 10px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 374px) {
  .section-case-study .our-case-study-main .our-work .btn-white {
    padding: 7px 9px;
    font-size: 14px;
  }
}

.section-case-study .our-case-study-main .swipe-btn-outer {
  display: flex;
  justify-content: end;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  position: absolute;
  bottom: 15px;
  right: 20px;
  z-index: 2;
}

@media only screen and (max-width: 1365px) {
  .section-case-study .our-case-study-main .swipe-btn-outer {
    height: 48px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 375px) {
  .section-case-study .our-case-study-main .swipe-btn-outer {
    height: 46px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 375px) {
  .section-case-study .our-case-study-main .swipe-btn-outer {
    gap: 8px;
  }
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-white);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  top: 10px;
  left: auto;
  right: auto;
}

@media only screen and (max-width: 1365px) {
  .section-case-study .our-case-study-main .swipe-btn-outer .com-btn {
    height: 48px;
    width: 48px;
  }
}
@media only screen and (max-width: 400px) {
  .section-case-study .our-case-study-main .swipe-btn-outer .com-btn {
    height: 38px;
    width: 38px;
  }
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn .icon::before {
  background-color: var(--clr-white);
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:hover .icon::before {
  background-color: var(--clr-black);
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:hover,
.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:focus {
  outline: none;
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:hover,
.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:focus {
  outline: none;
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn span {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-white);
}

@media only screen and (max-width: 1199px) {
  .section-case-study .our-case-study-main .swipe-btn-outer .com-btn span {
    transition: none;
  }
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-white);
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .section-case-study .our-case-study-main .swipe-btn-outer .com-btn:before {
    transition: none;
  }
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:after {
  display: none;
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:hover span {
  color: var(--clr-black);
  position: relative;
}

.section-case-study .our-case-study-main .swipe-btn-outer .com-btn:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

/* whitebg with case study icons css starts here */

.section-case-study.whitebg .our-case-study-main .swiper-slide .our-work {
  border: none;
}
.section-case-study.whitebg .our-case-study-main .swiper-slide .our-work .app-features {
  background-color: var(--clr-off-white);
}
.section-case-study.whitebg .our-case-study-main .swiper-slide .our-work .app-features ul li {
  background-color: var(--clr-light-gray);
}
.section-case-study.whitebg .our-case-study-main .swipe-btn-outer .com-btn {
  border: 1px solid var(--clr-black);
}
.section-case-study.whitebg .our-case-study-main .swipe-btn-outer .com-btn span {
  color: var(--clr-black);
}
.section-case-study.whitebg .our-case-study-main .swipe-btn-outer .com-btn .icon:before {
  background-color: var(--clr-black);
}

.section-case-study.whitebg .our-case-study-main .swipe-btn-outer .com-btn:hover::before {
  background-color: var(--clr-black);
}
.section-case-study.whitebg .our-case-study-main .swipe-btn-outer .com-btn:hover .icon:before {
  background-color: var(--clr-white);
}
.section-case-study.whitebg .our-case-study-main .swipe-btn-outer .com-btn:hover span {
  color: var(--clr-white);
}

.section-case-study.section-case-study-light {
  background-color: #fff;
}

.section-case-study.section-case-study-light .our-case-study-main .our-work {
  background-color: #f7f7f7;
  border-color: transparent;
}

@media screen and (min-width: 1366px) {
  .section-case-study.section-case-study-light .our-case-study-main .our-work {
    padding-inline: 100px;
  }
}

.section-case-study.section-case-study-light .our-case-study-main .swipe-btn-outer .com-btn .icon:before {
  background-color: var(--clr-black);
}

.section-case-study.section-case-study-light .our-case-study-main .swipe-btn-outer .com-btn:hover .icon:before {
  background-color: var(--clr-white);
}

.section-case-study.section-case-study-light .our-case-study-main .custom-border {
  border-color: #ececec;
  background-color: #ececec;
  opacity: 1;
}

.section-case-study.section-case-study-light .our-case-study-main .our-work .app-features {
  background-color: #ececec;
}

.section-case-study.section-case-study-light .our-case-study-main .our-work .app-features ul li {
  background-color: #fff;
  border: none;
}

@media screen and (min-width: 1366px) {
  .section-case-study.section-case-study-light .our-case-study-main .swipe-btn-outer {
    bottom: initial;
    top: 50%;
    left: 20px;
    width: calc(100% - 40px);
    transform: translateY(-50%);
    justify-content: space-between;
    right: initial;
  }
}

.section-case-study.section-case-study-light .our-case-study-main .swipe-btn-outer .com-btn {
  border-color: var(--clr-black);
}

.section-case-study.section-case-study-light .our-case-study-main .swipe-btn-outer .com-btn:before {
  background-color: var(--clr-black);
}

.section-case-study.section-case-study-light .our-case-study-main .swipe-btn-outer .com-btn:hover span {
  color: var(--clr-white);
}

.section-case-study.section-case-study-light .our-case-study-main .swipe-btn-outer .com-btn span {
  color: var(--clr-black);
}

/* whitebg with case study icons css ends here */

/*--- section case study End ---*/
/*--- section our leading minds Start ---*/
.section-our-leading-minds .leading-minds-main {
  position: relative;
}

.section-our-leading-minds .leading-minds-main .mt-40 {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .section-our-leading-minds .leading-minds-main .mt-40 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 575px) {
  .section-our-leading-minds .leading-minds-main .mt-40 {
    margin-top: 20px;
  }
}

.section-our-leading-minds .leading-minds-main .swiper-slide {
  height: auto;
}

.section-our-leading-minds .leading-minds-main .leading-minds {
  display: flex;
  gap: 40px;
  width: 100%;
  grid-column-gap: 30px;
  padding: 20px;
  background-color: #f7f7f7;
  border: 1px solid #f7f7f7;
  border-radius: 30px;
  min-height: 100%;
}

@media screen and (max-width: 767px) {
  .section-our-leading-minds .leading-minds-main .leading-minds {
    padding: 15px;
  }
}

@media screen and (max-width: 575px) {
  .section-our-leading-minds .leading-minds-main .leading-minds {
    display: block;
    padding: 15px;
  }
}

@media screen and (min-width: 1023px) and (max-width: 1599px) {
  .section-our-leading-minds .leading-minds-main .leading-minds {
    grid-column-gap: 25px;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .section-our-leading-minds .leading-minds-main .leading-minds {
    grid-column-gap: 20px;
  }
}

.section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-left {
  width: 50%;
}

@media screen and (max-width: 1365px) {
  .section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-left {
    width: 40%;
  }
}

@media screen and (max-width: 575px) {
  .section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-left {
    width: 100%;
  }
}

.section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-left .portfolio-img img {
  aspect-ratio: auto 700/470;
  height: auto;
}

@media screen and (min-width: 1199px) {
  .section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-left .portfolio-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media screen and (max-width: 1365px) {
  .section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-right {
    width: 60%;
  }
}

@media screen and (max-width: 575px) {
  .section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-right {
    width: 100%;
  }
}

.section-our-leading-minds .leading-minds-main .leading-minds .leading-minds-right .leaders-speech {
  margin-bottom: 60px;
}

.section-our-leading-minds .leading-minds-main .swipe-btn-outer {
  display: flex;
  justify-content: end;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

@media only screen and (max-width: 1365px) {
  .section-our-leading-minds .leading-minds-main .swipe-btn-outer {
    height: 48px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 767px) {
  .section-our-leading-minds .leading-minds-main .swipe-btn-outer {
    bottom: 15px;
  }
}

.section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-black);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  top: 10px;
  left: auto;
  right: auto;
  color: var(--clr-black);
}

@media only screen and (max-width: 1365px) {
  .section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn {
    height: 48px;
    width: 48px;
  }
}

.section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn .icon {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-black);
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 1199px) {
  .section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn .icon {
    transition: none;
  }
}

.section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-black);
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn:before {
    transition: none;
  }
}

.section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn:after {
  display: none;
}

.section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn:hover .icon:before {
  background-color: var(--clr-white);
  position: relative;
}

.section-our-leading-minds .leading-minds-main .swipe-btn-outer .com-btn:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

/*--- section our leading minds End ---*/
.hire-steps {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  margin-top: 20px;
}

@media screen and (min-width: 1023px) and (max-width: 1599px) {
  .hire-steps {
    grid-column-gap: 25px;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .hire-steps {
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    overflow: auto;
    grid-column-gap: 20px;
    padding: 0 0 15px 2px;
  }
}

@media screen and (max-width: 575px) {
  .hire-steps {
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    overflow: auto;
    grid-column-gap: 20px;
    padding: 0 0 15px 2px;
  }
}

.hire-steps .steps-main {
  padding: 30px;
}

@media screen and (max-width: 575px) {
  .hire-steps .steps-main {
    min-width: 85%;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .hire-steps .steps-main {
    min-width: 315px;
  }
}

@media screen and (max-width: 1199px) {
  .hire-steps .steps-main {
    padding: 20px;
  }
}

.hire-steps .steps-main .process-icons {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  border-radius: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(25, 32, 32);
  -o-border-image: initial;
  border-image: initial;
}

.discover-work-life {
  background-color: #192020;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .discover-work-life {
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    overflow: auto;
    grid-column-gap: 20px;
    padding: 0 0 15px 2px;
  }
}

@media screen and (max-width: 575px) {
  .discover-work-life {
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    overflow: auto;
    grid-column-gap: 20px;
    padding: 0 0 15px 2px;
  }
}

.discover-work-life .steps-main {
  padding: 30px;
}

@media screen and (max-width: 575px) {
  .discover-work-life .steps-main {
    min-width: 85%;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .discover-work-life .steps-main {
    min-width: 315px;
  }
}

@media screen and (max-width: 1199px) {
  .discover-work-life .steps-main {
    padding: 20px;
  }
}

.discover-work-life .steps-main .process-icons {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  border-radius: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(25, 32, 32);
  -o-border-image: initial;
  border-image: initial;
}
.discover-work-life .steps-main .process-icons .icon {
  width: 24px;
  height: 24px;
}
.discover-work-life .steps-main .process-icons .icon:before {
  background-color: var(--clr-white);
}
.join-team {
  margin-top: 40px;
  background-color: #252b2b;
  color: #fff;
  padding: 30px;
  border: 1px solid #3b4040;
}

.join-team .btn-black {
  background-color: #252b2b;
}

.career-opening-main {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .career-opening-main {
    margin-top: 0px;
  }
}

@media screen and (max-width: 767px) {
  .career-opening-main .details-btn.btn-white {
    background-color: #000 !important;
  }
}

.career-opening-main .details-btn.btn-white:focus .material-symbols-rounded,
.career-opening-main .details-btn.btn-white:hover .material-symbols-rounded {
  transform: rotate(0deg) scaleY(-1);
}

.career-opening-main .details-btn.btn-white .material-symbols-rounded {
  transform: rotate(0deg) scaleY(-1);
  margin-top: -3px;
  transition: none;
}

@media screen and (max-width: 767px) {
  .career-opening-main .accordion-button.collapsed {
    background-color: var(--clr-black);
    border-radius: 6px !important;
  }
}

.career-opening-main .accordion-button.collapsed .details-btn.btn-white .material-symbols-rounded {
  transform: rotate(0deg);
  margin-top: 0;
}

.career-opening-main .accordion {
  border-radius: 24px;
  overflow: hidden;
}

.career-opening-main .accordion .accordion-item {
  border: 1px solid rgba(25, 32, 32, 0.1);
  margin-bottom: 40px;
}

@media screen and (max-width: 1023px) {
  .career-opening-main .accordion .accordion-item {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 991px) {
  .career-opening-main .accordion .accordion-item {
    margin-bottom: 14px;
  }
}

.career-opening-main .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.career-opening-main .accordion .accordion-item:first-of-type {
  border-radius: 24px;
}

.career-opening-main .accordion .accordion-item .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .career-opening-main .accordion .accordion-item .accordion-header {
    align-items: start;
    padding: 15px;
  }
}

.career-opening-main .accordion-body {
  background-color: #f7f7f7;
  border-radius: 24px;
  overflow: hidden;
}

.career-opening-main .accordion-body .requirements li {
  position: relative;
  padding: 8px 0 8px 32px;
}

.career-opening-main .accordion-body .requirements li::before {
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3E%3Cpath d='m423.231-394.153-92.924-92.923q-8.307-8.308-20.884-8.5-12.577-.193-21.269 8.5-8.692 8.692-8.692 21.076t8.692 21.076l109.769 109.769q10.846 10.846 25.308 10.846 14.461 0 25.307-10.846l222.538-222.538q8.308-8.307 8.5-20.884.193-12.577-8.5-21.269-8.692-8.692-21.076-8.692t-21.076 8.692L423.231-394.153Zm56.836 294.152q-78.836 0-148.204-29.92-69.369-29.92-120.682-81.21-51.314-51.291-81.247-120.629-29.933-69.337-29.933-148.173t29.92-148.204q29.92-69.369 81.21-120.682 51.291-51.314 120.629-81.247 69.337-29.933 148.173-29.933t148.204 29.92q69.369 29.92 120.682 81.21 51.314 51.291 81.247 120.629 29.933 69.337 29.933 148.173t-29.92 148.204q-29.92 69.369-81.21 120.682-51.291 51.314-120.629 81.247-69.337 29.933-148.173 29.933ZM480-160q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3E%3Cpath d='m423.231-394.153-92.924-92.923q-8.307-8.308-20.884-8.5-12.577-.193-21.269 8.5-8.692 8.692-8.692 21.076t8.692 21.076l109.769 109.769q10.846 10.846 25.308 10.846 14.461 0 25.307-10.846l222.538-222.538q8.308-8.307 8.5-20.884.193-12.577-8.5-21.269-8.692-8.692-21.076-8.692t-21.076 8.692L423.231-394.153Zm56.836 294.152q-78.836 0-148.204-29.92-69.369-29.92-120.682-81.21-51.314-51.291-81.247-120.629-29.933-69.337-29.933-148.173t29.92-148.204q29.92-69.369 81.21-120.682 51.291-51.314 120.629-81.247 69.337-29.933 148.173-29.933t148.204 29.92q69.369 29.92 120.682 81.21 51.314 51.291 81.247 120.629 29.933 69.337 29.933 148.173t-29.92 148.204q-29.92 69.369-81.21 120.682-51.291 51.314-120.629 81.247-69.337 29.933-148.173 29.933ZM480-160q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  position: absolute;
  top: 8px;
  left: 0;
  background: #000;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .career-opening-main .accordion-body .requirements li::before {
    top: 7px;
  }
}

.career-opening-main .accordion-body .apply-now {
  background-color: #f0f0f0;
  text-align: center;
  padding: 12px 10px;
  border-radius: 10px;
}

.career-opening-main .opening-left {
  width: calc(100% - 315px);
}

@media screen and (max-width: 767px) {
  .career-opening-main .opening-left {
    width: calc(100% - 40px);
  }
}

.career-opening-main .opening-right {
  width: 300px;
}

@media screen and (max-width: 1599px) {
  .career-opening-main .opening-right {
    width: 290px;
  }
}

@media screen and (max-width: 767px) {
  .career-opening-main .opening-right {
    width: 30px;
    height: 30px;
  }
}

.career-opening-main .opening-right .accordion-button {
  height: 100%;
  width: 100%;
  padding: 0;
}

.career-opening-main .opening-right .accordion-button:focus {
  outline: none;
}

.career-opening-main .opening-right .accordion-button:not(.collapsed) {
  color: transparent;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .career-opening-main .opening-right .accordion-button:not(.collapsed) {
    background-color: var(--clr-black);
    border-radius: 6px;
  }
}

.career-opening-main .opening-right .accordion-button {
  -webkit-appearance: none;
}

.career-opening-main .opening-right .accordion-button::after {
  filter: brightness(0) invert(1);
  margin: 0 auto;
  width: 18px;
  height: 18px;
  background-size: auto;
}

@media screen and (min-width: 767px) {
  .career-opening-main .opening-right .accordion-button::after {
    content: none;
  }
}

.career-opening-main .accordion-button .details-btn:focus .icon,
.career-opening-main .accordion-button .details-btn:hover .icon {
  transform: rotate(0);
}

.career-opening-main .accordion-button:not(.collapsed) .details-btn .icon {
  transform: scaleY(-1) translateY(2px);
}

/*--- section drive us css Start ---*/
.section-drive-us .drive-outer .driveus-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 40px;
}

@media only screen and (max-width: 1499px) {
  .section-drive-us .drive-outer .driveus-wrapper {
    grid-row-gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .section-drive-us .drive-outer .driveus-wrapper {
    grid-row-gap: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .section-drive-us .drive-outer .driveus-wrapper {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    gap: 20px;
  }
}

.section-drive-us .drive-outer .driveus-wrapper .block {
  display: grid;
  grid-column-gap: 30px;
}

@media only screen and (max-width: 1499px) {
  .section-drive-us .drive-outer .driveus-wrapper .block {
    grid-column-gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .section-drive-us .drive-outer .driveus-wrapper .block {
    grid-column-gap: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .section-drive-us .drive-outer .driveus-wrapper .block {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    width: 100%;
    min-width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .section-drive-us .drive-outer .driveus-wrapper .block .img-wrap {
    width: 100%;
    min-width: 60%;
    margin-bottom: 5px;
  }
}

.section-drive-us .drive-outer .driveus-wrapper .block .img-wrap img {
  height: auto;
}

.section-drive-us .drive-outer .driveus-wrapper .block.blockone {
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 40px;
}

@media only screen and (max-width: 1499px) {
  .section-drive-us .drive-outer .driveus-wrapper .block.blockone {
    grid-row-gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .section-drive-us .drive-outer .driveus-wrapper .block.blockone {
    grid-row-gap: 20px;
  }
}

.section-drive-us .drive-outer .driveus-wrapper .block.blockone .img-wrap img {
  width: 453px;
  aspect-ratio: auto 453/300;
}

.section-drive-us .drive-outer .driveus-wrapper .block.blocktwo {
  grid-template-columns: 1fr 1fr;
}

.section-drive-us .drive-outer .driveus-wrapper .block.blocktwo .img-wrap img {
  width: 700px;
  aspect-ratio: auto 700/464;
}

.section-drive-us .drivemob .img-wrap {
  height: 300px;
}

@media only screen and (max-width: 480px) {
  .section-drive-us .drivemob .img-wrap {
    height: 250px;
  }
}

@media only screen and (max-width: 375px) {
  .section-drive-us .drivemob .img-wrap {
    height: 220px;
  }
}

.section-drive-us .drivemob .img-wrap img {
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 480px) {
  .section-drive-us .drivemob .img-wrap img {
    height: 250px;
  }
}

@media only screen and (max-width: 375px) {
  .section-drive-us .drivemob .img-wrap img {
    height: 220px;
  }
}

.section-drive-us .drivemob .img-wrap img.big {
  width: 453px;
  aspect-ratio: auto 453/300;
}

.section-drive-us .drivemob .img-wrap img.small {
  width: 700px;
  aspect-ratio: auto 700/464;
}

/*--- section drive us css  End ---*/
/*--- section life culture css  Start ---*/
.life-btn {
  background-color: transparent;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

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

@media only screen and (max-width: 1024px) {
  @-webkit-keyframes marquee {
    0% {
      transform: translateX(0);
    }

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

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }

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

@media only screen and (max-width: 768px) {
  @-webkit-keyframes marquee {
    0% {
      transform: translateX(0);
    }

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

  @keyframes marquee {
    0% {
      transform: translateX(0);
    }

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

@-webkit-keyframes marqueereverse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes marqueereverse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0);
  }
}

@media only screen and (max-width: 1024px) {
  @-webkit-keyframes marqueereverse {
    0% {
      transform: translateX(-125%);
    }

    100% {
      transform: translateX(0);
    }
  }

  @keyframes marqueereverse {
    0% {
      transform: translateX(-125%);
    }

    100% {
      transform: translateX(0);
    }
  }
}

@media only screen and (max-width: 768px) {
  @-webkit-keyframes marqueereverse {
    0% {
      transform: translateX(-166.65%);
    }

    100% {
      transform: translateX(0);
    }
  }

  @keyframes marqueereverse {
    0% {
      transform: translateX(-166.65%);
    }

    100% {
      transform: translateX(0);
    }
  }
}

.section-life-culture #marquee {
  width: 100%;
  margin: 0 0 35px 0;
}

.section-life-culture #marquee .view {
  overflow: hidden;
  width: 100%;
}

.section-life-culture #marquee .pic-container {
  display: flex;
  -webkit-animation: marquee 35s infinite alternate linear;
  animation: marquee 35s infinite alternate linear;
}

.section-life-culture #marquee .pic-container .pic {
  flex-basis: 20%;
  flex-shrink: 0;
}

@media only screen and (max-width: 1024px) {
  .section-life-culture #marquee .pic-container .pic {
    flex-basis: 25%;
  }
}

@media only screen and (max-width: 768px) {
  .section-life-culture #marquee .pic-container .pic {
    flex-basis: 33.33%;
  }
}

.section-life-culture #marquee .pic-container .pic img {
  width: 750px;
  aspect-ratio: auto 750/500;
}

.section-life-culture #marquee .pic-container .pic .img-div {
  width: 751px;
  height: 324px;
  display: inline-block;
  padding-right: 20px;
}

.section-life-culture #marquee .pic-container .pic .img-div .img-big {
  width: 486px;
  height: 325px;
  float: left;
  display: inline-block;
}

.section-life-culture #marquee .pic-container .pic .img-div .img-big img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
  max-width: 100%;
  height: auto;
}

.section-life-culture #marquee .pic-container .pic .img-div .img-small {
  width: 224px;
  display: inline-block;
  margin-left: 20px;
}

.section-life-culture #marquee .pic-container .pic .img-div .img-small .small-one {
  height: 152px;
  margin-bottom: 20px;
}

.section-life-culture #marquee .pic-container .pic .img-div .img-small .small-one img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  width: 950px;
  aspect-ratio: auto 950/500;
  max-width: 100%;
  height: auto;
}

.section-life-culture #marquee .pic-container .pic .img-div .img-small .small-two {
  height: 152px;
}

.section-life-culture #marquee .pic-container .pic .img-div .img-small .small-two img {
  height: 151px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.section-life-culture #marquee .pic-container.pic-container-reverse {
  -webkit-animation: marqueereverse 35s infinite alternate linear;
  animation: marqueereverse 35s infinite alternate linear;
}

.section-life-culture #marquee img {
  width: 100%;
  vertical-align: middle;
}

.section-life-culture #marquee:last-child {
  margin-bottom: 0;
}

/*--- section life culture css  End ---*/
/*--- section event lists css  Start ---*/
.event-btn {
  background-color: transparent;
}

.event-list-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 40px;
  grid-column-gap: 30px;
  margin-top: 20px;
}

@media only screen and (max-width: 1599px) {
  .event-list-outer {
    grid-row-gap: 25px;
    grid-column-gap: 25px;
  }
}

@media only screen and (max-width: 1023px) {
  .event-list-outer {
    grid-row-gap: 20px;
    grid-column-gap: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .event-list-outer {
    grid-template-columns: 1fr;
  }
}

.event-list-outer .block {
  padding: 10px;
  background-color: var(--clr-white);
  height: 100%;
}

.event-list-outer .block .card-img {
  height: 340px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}

@media only screen and (max-width: 1365px) {
  .event-list-outer .block .card-img {
    height: 310px;
  }
}

@media only screen and (max-width: 1199px) {
  .event-list-outer .block .card-img {
    height: 280px;
  }
}

@media only screen and (max-width: 991px) {
  .event-list-outer .block .card-img {
    height: 230px;
  }
}

@media only screen and (max-width: 767px) {
  .event-list-outer .block .card-img {
    height: 180px;
  }
}

@media only screen and (max-width: 575px) {
  .event-list-outer .block .card-img {
    height: 220px;
  }
}

@media only screen and (max-width: 375px) {
  .event-list-outer .block .card-img {
    height: 180px;
  }
}

.event-list-outer .block .card-img img {
  border-radius: 16px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 680px;
  aspect-ratio: auto 680/340;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 100%;
}

@media only screen and (max-width: 767px) {
  .event-list-outer .block .card-img img {
    height: 180px;
  }
}

@media only screen and (max-width: 575px) {
  .event-list-outer .block .card-img img {
    height: 220px;
  }
}

@media only screen and (max-width: 375px) {
  .event-list-outer .block .card-img img {
    height: 180px;
  }
}

.event-list-outer .block .card-content {
  height: calc(100% - 340px);
  padding: 25px 25px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media only screen and (max-width: 1365px) {
  .event-list-outer .block .card-content {
    height: calc(100% - 310px);
  }
}

@media only screen and (max-width: 1199px) {
  .event-list-outer .block .card-content {
    height: calc(100% - 280px);
  }
}

@media only screen and (max-width: 991px) {
  .event-list-outer .block .card-content {
    display: block;
    padding: 20px 0 10px;
    height: calc(100% - 230px);
  }
}

@media only screen and (max-width: 767px) {
  .event-list-outer .block .card-content {
    height: calc(100% - 180px);
  }
}

@media only screen and (max-width: 575px) {
  .event-list-outer .block .card-content {
    height: calc(100% - 220px);
  }
}

@media only screen and (max-width: 480px) {
  .event-list-outer .block .card-content {
    padding: 10px 0 0px;
  }
}

@media only screen and (max-width: 375px) {
  .event-list-outer .block .card-content {
    height: calc(100% - 180px);
  }
}

.event-list-outer .block .card-content .small-content {
  max-width: 360px;
}

@media only screen and (max-width: 1199px) {
  .event-list-outer .block .card-content .small-content {
    max-width: none;
  }
}

@media only screen and (max-width: 991px) {
  .event-list-outer .block .card-content .small-content {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .event-list-outer .block .card-content .small-content {
    margin-bottom: 10px;
  }
}

.event-list-outer .block .card-content .btn-wrap {
  flex: 0 0 auto;
}

/*--- section event lists css  End ---*/
/*--- section explore life css  Start ---*/
.explore-life-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

@media only screen and (max-width: 1599px) {
  .explore-life-wrap {
    gap: 25px;
  }
}

@media only screen and (max-width: 1023px) {
  .explore-life-wrap {
    gap: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .explore-life-wrap {
    flex-direction: column;
  }
}

.explore-life-wrap .blocks {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 40px;
}

@media only screen and (max-width: 1599px) {
  .explore-life-wrap .blocks {
    grid-row-gap: 25px;
  }
}

@media only screen and (max-width: 1023px) {
  .explore-life-wrap .blocks {
    grid-row-gap: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .explore-life-wrap .blocks {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.explore-life-wrap .blocks img {
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.explore-life-wrap .block-left .small-div img {
  width: 265px;
  aspect-ratio: auto 265/265;
}

.explore-life-wrap .block-middle img {
  width: 839px;
  aspect-ratio: auto 839/870;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.explore-life-wrap .block-right .small-div img {
  width: 256px;
  aspect-ratio: auto 256/265;
}

/*--- section explore life css  End ---*/
/*--- section event banner css  Start ---*/
.event-banner img {
  width: 1440px;
  aspect-ratio: auto 1440/680;
  -o-object-fit: cover;
  object-fit: cover;
}

/*--- section event banner css  End ---*/
/*--- section event gallery css  Start ---*/
.fancybox-toolbar .fancybox-button--zoom,
.fancybox-toolbar .fancybox-button--play,
.fancybox-toolbar .fancybox-button--thumbs {
  display: none !important;
}

.fancybox-image {
  border-radius: 24px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1023px) {
  .fancybox-image {
    max-width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.event-gallery .gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}

@media only screen and (max-width: 1599px) {
  .event-gallery .gallery {
    grid-row-gap: 15px;
    grid-column-gap: 15px;
  }
}

@media only screen and (max-width: 1023px) {
  .event-gallery .gallery {
    grid-row-gap: 8px;
    grid-column-gap: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .event-gallery .gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 480px) {
  .event-gallery .gallery {
    grid-template-columns: 1fr;
  }
}

.event-gallery .gallery .item {
  outline: none;
}

@media only screen and (max-width: 480px) {
  .event-gallery .gallery .item {
    height: 280px;
  }
}

.event-gallery .gallery .item img {
  width: 750px;
  aspect-ratio: auto 750/500;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 480px) {
  .event-gallery .gallery .item img {
    height: 280px;
    -o-object-position: top;
    object-position: top;
  }
}

/*--- section event gallery css  End ---*/
/*--- section client trust css  Start ---*/
.client-trust-wrapper .aboutus-tabs {
  display: inline-flex;
  padding: 5px;
  gap: 10px;
  align-items: center;
  border-radius: 30px;
  background-color: var(--clr-light-grey);
}

@media screen and (max-width: 1199px) {
  .client-trust-wrapper .aboutus-tabs {
    border-radius: 10px 10px 0 0;
  }
}

@media screen and (max-width: 1599px) {
  .client-trust-wrapper .aboutus-tabs .nav-item {
    text-align: center;
  }
}

.client-trust-wrapper .aboutus-tabs .nav-item .nav-link {
  width: 100%;
  color: var(--clr-white);
  opacity: 0.5;
  position: relative;
  padding: 0.5rem 1.36rem;
  border-radius: 30px;
  border: 1px solid transparent;
}

@media screen and (max-width: 1599px) {
  .client-trust-wrapper .aboutus-tabs .nav-item .nav-link {
    padding: 0.5rem 2rem;
  }
}

@media screen and (max-width: 1199px) {
  .client-trust-wrapper .aboutus-tabs .nav-item .nav-link {
    padding: 0.5rem 1.5rem;
    border-radius: 10px 10px 0 0;
  }
}

.client-trust-wrapper .aboutus-tabs .nav-item .nav-link:focus {
  outline: none;
}

.client-trust-wrapper .aboutus-tabs .nav-item .nav-link.active {
  opacity: 1;
  background-color: var(--clr-white);
  color: var(--clr-black);
}

.client-trust-wrapper .tab-content {
  margin-top: 20px;
}

.client-trust-wrapper .tab-content .our-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 40px;
}

@media only screen and (max-width: 1599px) {
  .client-trust-wrapper .tab-content .our-content {
    grid-row-gap: 25px;
  }
}

@media only screen and (max-width: 1023px) {
  .client-trust-wrapper .tab-content .our-content {
    grid-row-gap: 20px;
  }
}

.client-trust-wrapper .tab-content .our-content .block-top {
  border: 1px solid var(--clr-dark-black);
  padding: 28px 25px 25px;
  background-color: var(--clr-light-grey);
}

.client-trust-wrapper .tab-content .our-content .block-top .inner-content {
  padding: 30px;
}

.client-trust-wrapper .tab-content .our-content .block-bottom {
  display: flex;
  gap: 40px;
}

@media only screen and (max-width: 1599px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom {
    gap: 25px;
  }
}

@media only screen and (max-width: 1023px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
}

.client-trust-wrapper .tab-content .our-content .block-bottom img {
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 480px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom .block-left {
    height: 280px;
  }
}

.client-trust-wrapper .tab-content .our-content .block-bottom .block-left img {
  width: 947px;
  aspect-ratio: auto 947/680;
}

@media only screen and (max-width: 480px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom .block-left img {
    height: 280px;
  }
}

.client-trust-wrapper .tab-content .our-content .block-bottom .block-right {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 40px;
}

@media only screen and (max-width: 1599px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom .block-right {
    grid-row-gap: 25px;
  }
}

@media only screen and (max-width: 1023px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom .block-right {
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom .block-right .small-img {
    height: 180px;
  }
}

@media only screen and (max-width: 375px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom .block-right .small-img {
    height: 150px;
  }
}

.client-trust-wrapper .tab-content .our-content .block-bottom .block-right .small-img img {
  width: 453px;
  aspect-ratio: auto 453/320;
}

@media only screen and (max-width: 480px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom .block-right .small-img img {
    height: 180px;
  }
}

@media only screen and (max-width: 375px) {
  .client-trust-wrapper .tab-content .our-content .block-bottom .block-right .small-img img {
    height: 150px;
  }
}

/*--- section client trust css  End ---*/
/*--- section successstory css  Start ---*/
.succes-story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  margin-top: 20px;
}

@media only screen and (max-width: 1599px) {
  .succes-story-wrap {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }
}

@media only screen and (max-width: 1023px) {
  .succes-story-wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .succes-story-wrap {
    grid-template-columns: 1fr;
  }
}

.succes-story-wrap .card-wrap .card-images {
  height: auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
}

.succes-story-wrap .card-wrap .card-images img {
  width: 100%;
  aspect-ratio: auto 700/500;
  height: auto;
  position: relative;
  z-index: 3;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

@media screen and (max-width: 1199px) {
  .succes-story-wrap .card-wrap .card-images img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.succes-story-wrap .card-wrap .card-images .item-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
  border-radius: 24px;
}

@media screen and (max-width: 1199px) {
  .succes-story-wrap .card-wrap .card-images .item-video {
    border-radius: 16px;
  }
}

.succes-story-wrap .card-wrap .card-images:hover img {
  opacity: 0;
  transform: scale(1.04);
}

/*--- section successstory css  End ---*/
.bg-light-grey {
  background-color: var(--clr-light-grey);
}

.bg-with-lists {
  padding: 30px;
}

/*--- faq lists  css  Start ---*/
.faq-lists li {
  position: relative;
  padding: 8px 0 8px 32px;
}

.faq-lists li::before {
  content: "";
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3E%3Cpath d='m423.231-394.153-92.924-92.923q-8.307-8.308-20.884-8.5-12.577-.193-21.269 8.5-8.692 8.692-8.692 21.076t8.692 21.076l109.769 109.769q10.846 10.846 25.308 10.846 14.461 0 25.307-10.846l222.538-222.538q8.308-8.307 8.5-20.884.193-12.577-8.5-21.269-8.692-8.692-21.076-8.692t-21.076 8.692L423.231-394.153Zm56.836 294.152q-78.836 0-148.204-29.92-69.369-29.92-120.682-81.21-51.314-51.291-81.247-120.629-29.933-69.337-29.933-148.173t29.92-148.204q29.92-69.369 81.21-120.682 51.291-51.314 120.629-81.247 69.337-29.933 148.173-29.933t148.204 29.92q69.369 29.92 120.682 81.21 51.314 51.291 81.247 120.629 29.933 69.337 29.933 148.173t-29.92 148.204q-29.92 69.369-81.21 120.682-51.291 51.314-120.629 81.247-69.337 29.933-148.173 29.933ZM480-160q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24'%3E%3Cpath d='m423.231-394.153-92.924-92.923q-8.307-8.308-20.884-8.5-12.577-.193-21.269 8.5-8.692 8.692-8.692 21.076t8.692 21.076l109.769 109.769q10.846 10.846 25.308 10.846 14.461 0 25.307-10.846l222.538-222.538q8.308-8.307 8.5-20.884.193-12.577-8.5-21.269-8.692-8.692-21.076-8.692t-21.076 8.692L423.231-394.153Zm56.836 294.152q-78.836 0-148.204-29.92-69.369-29.92-120.682-81.21-51.314-51.291-81.247-120.629-29.933-69.337-29.933-148.173t29.92-148.204q29.92-69.369 81.21-120.682 51.291-51.314 120.629-81.247 69.337-29.933 148.173-29.933t148.204 29.92q69.369 29.92 120.682 81.21 51.314 51.291 81.247 120.629 29.933 69.337 29.933 148.173t-29.92 148.204q-29.92 69.369-81.21 120.682-51.291 51.314-120.629 81.247-69.337 29.933-148.173 29.933ZM480-160q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  position: absolute;
  top: 8px;
  left: 0;
  background: #000;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1023px) {
  .faq-lists li::before {
    top: 7px;
  }
}

/*--- faq lists css  End ---*/
.mi-pill {
  border: 1px solid #e8e8e8;
  padding: 10px 16px;
  border-radius: 100px;
}

@media screen and (max-width: 767px) {
  .mi-pill.d-flex.gap-2.align-items-center.font-14 {
    text-align: left !important;
    align-items: flex-start !important;
    border-radius: 14px;
    padding: 10px;
    width: 100%;
  }
}

.wh-32 {
  width: 32px;
  height: 32px;
}

.wh-24 {
  width: 24px;
  height: 24px;
}

.our-service-slider {
  padding: 0 60px;
}

@media only screen and (max-width: 1365px) {
  .our-service-slider {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .our-service-slider {
    padding: 0 15px;
  }
}

.our-service-slider .we-serve__slider {
  padding: 0;
}

@media only screen and (max-width: 1023px) {
  .is-menu-open {
    overflow: hidden !important;
  }
}

.more-services__expandable {
  display: none;
}

.modern-it-services .more-services__expandable .more-services .more-services-inner {
  border-top: 1px solid rgba(25, 32, 32, 0.2);
}

.modern-it-services.dedicated-developers-page .more-services__expandable .more-services .more-services-inner {
  border-top: none;
}

@media only screen and (max-width: 767px) {
  .modern-it-services.dedicated-developers-page .more-services__expandable .more-services .more-services-inner {
    border-top: none;
  }
}

.modern-it-services.dedicated-developers-page
  .more-services__expandable
  .more-services
  .more-services-inner:nth-child(1),
.modern-it-services.dedicated-developers-page
  .more-services__expandable
  .more-services
  .more-services-inner:nth-child(2) {
  border-top: 1px solid rgba(25, 32, 32, 0.2);
}

@media only screen and (max-width: 767px) {
  .modern-it-services.dedicated-developers-page
    .more-services__expandable
    .more-services
    .more-services-inner:nth-child(1) {
    border-top: 1px solid rgba(25, 32, 32, 0.2);
  }
}

.modern-it-services.dedicated-developers-page
  .more-services__expandable
  .more-services
  .more-services-inner:nth-last-child(1),
.modern-it-services.dedicated-developers-page
  .more-services__expandable
  .more-services
  .more-services-inner:nth-last-child(2) {
  border-top: none;
}

@media screen and (max-width: 767px) {
  .modern-it-services.dedicated-developers-page .more-services .more-services-inner:nth-last-of-type(1) {
    padding-bottom: 20px;
  }
}

.sec-privacy p a,
.detail p a,
.more-services-inner p a {
  color: var(--clr-blue);
  text-decoration: underline;
}

.custom-padding-left-60 {
  padding-left: 60px;
}

@media screen and (max-width: 1365px) {
  .custom-padding-left-60 {
    padding-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-padding-left-60 {
    padding-left: 0;
  }
}

.padding-inner {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .padding-inner {
    padding-left: 4px;
  }
}

.link-clr {
  color: var(--clr-blue);
  text-decoration: underline;
}

.link-clr:hover {
  color: var(--clr-blue);
  text-decoration: underline;
  opacity: 0.9;
}

.call-to-action p a {
  color: var(--clr-blue);
  text-decoration: underline;
}

.call-to-action p a:hover {
  color: var(--clr-blue);
  text-decoration: underline;
  opacity: 0.9;
}

.searchSelect3 {
  position: relative;
  color: var(--clr-white);
  height: 100%;
}

.searchSelect3:focus {
  box-shadow: none;
  outline: none;
}

.searchSelect3:hover {
  box-shadow: none;
  outline: none;
}

.searchSelect3_Input {
  width: 110px;
  height: 100%;
  background: transparent;
  border-radius: 0;
  border: none;
  text-indent: 10px;
  padding-right: 20px;
  outline: none;
  position: relative;
  color: var(--clr-white);
}

.searchSelect3_Input:focus {
  outline: none;
  box-shadow: none;
}

.searchSelect3_Input:hover {
  outline: none;
  box-shadow: none;
}

.searchSelect3_Caret_Down {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 180px;
  cursor: pointer;
}

.searchSelect3_Caret_Down:before {
  content: "";
  position: absolute;
  right: 0;
  background: url("./../components/footer/img/down-arrow.svg") no-repeat;
  width: 12px;
  height: 7px;
  top: 0;
}

.searchSelect3_Times {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 110px;
  cursor: pointer;
  display: none;
}

.searchSelect3_List {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  height: 20em;
  width: 250px;
  position: absolute;
}

.searchSelect3_List li {
  list-style-type: none;
  background: var(--clr-white);
  color: var(--clr-black);
  border-bottom: 1px solid var(--clr-dark-black);
}

.searchSelect3_List li:hover {
  cursor: pointer;
  background: var(--clr-black);
  color: var(--clr-white);
}

.searchSelect3_List li label {
  padding: 0.5em;
  cursor: pointer;
}

.searchSelect3_List li:hover label {
  color: var(--clr-white);
}

.searchSelect3_Input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.searchSelect3_Input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.searchSelect3_Input::-webkit-search-decoration,
.searchSelect3_Input::-webkit-search-cancel-button,
.searchSelect3_Input::-webkit-search-results-button,
.searchSelect3_Input::-webkit-search-results-decoration {
  display: none;
}

.mi-modal-body .searchSelect3_Input {
  color: var(--clr-black);
}

/* Contact us css */
.contact-us-main {
  background: var(--clr-black);
}

.contact-us-main .latest-footer-section {
  background-color: transparent;
}

.contact-us-main .latest-footer-section .new-latest-contactus {
  background-color: var(--clr-white);
}

.contact-us-main .latest-footer-section .new-latest-contactus .upload-files .inputDnD {
  padding: 10px;
  border: 1px dashed rgba(0, 0, 0, 0.15);
}

.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .footer-sub-title,
.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .choose-country,
.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .full-address
  p,
.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .full-address
  p
  a,
.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .full-address
  span,
.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .full-address
  a {
  color: var(--clr-black) !important;
}
.communication-location .full-address {
  word-break: break-word;
}

@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .communication-location .full-address a {
    align-items: start !important;
  }
}

.communication-location .full-address .pro-icon {
  flex: 0 0 auto;
}
.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .full-address
  .pro-icon
  img {
  filter: blur(0) brightness(0);
}

.contact-us-main .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .border-one {
  border-top: 1px solid rgba(25, 32, 32, 0.2);
}

.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main
  .quick-address
  span,
.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main
  .quick-address
  a {
  color: var(--clr-black) !important;
}

.contact-us-main
  .latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main
  .social-media-icons
  li
  img {
  filter: brightness(0) saturate(100%);
}

.contact-us-main .contact-wrapper .inner-content {
  background: linear-gradient(0deg, #f7f7f7, #f7f7f7), linear-gradient(0deg, #e6e6e6, #e6e6e6);
  border: 1px solid #e6e6e6;
}

.contact-us-main .contact-wrapper .inner-content h1 {
  color: var(--clr-black) !important;
}
.contact-us-main .contact-wrapper .inner-content h3 {
  color: var(--clr-black) !important;
}

.contact-us-main .contact-wrapper .inner-content .form-control {
  border-bottom: 1px solid rgb(230, 230, 230);
  color: var(--clr-black);
}

.contact-us-main .contact-wrapper .inner-content .form-control::-moz-placeholder {
  color: rgba(25, 32, 32, 0.5);
}

.contact-us-main .contact-wrapper .inner-content .form-control::placeholder {
  color: rgba(25, 32, 32, 0.5);
}

.contact-us-main .contact-wrapper .inner-content .select-country .select2-container,
.contact-us-main .contact-wrapper .inner-content .country-wrap {
  border-bottom: 1px solid rgb(230, 230, 230);
  /* height: auto; */
}

.contact-us-main
  .contact-wrapper
  .inner-content
  .select-country
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  color: var(--clr-black) !important;
  display: flex;
  height: 100%;
  align-items: center;
}

.contact-wrapper
  .inner-content
  .select-country
  .select2-container
  .select2-selection--single
  .select2-selection__arrow {
  display: flex;
  height: 100%;
  align-items: center;
}

.contact-us-main .contact-wrapper .inner-content .form-control-textarea {
  border-bottom: 1px solid rgb(230, 230, 230);
  color: var(--clr-black);
}

.contact-us-main .contact-wrapper .inner-content .form-control-textarea::-moz-placeholder {
  color: rgba(25, 32, 32, 0.5);
}

.contact-us-main .contact-wrapper .inner-content .form-control-textarea::placeholder {
  color: rgba(25, 32, 32, 0.5);
}

.contact-us-main .upload-files .inputDnD .inside-div .icon p {
  color: var(--clr-black) !important;
}

.contact-us-main .upload-files .inputDnD .inside-div .icon .material-symbols-rounded {
  color: var(--clr-black) !important;
}

.contact-us-main .upload-files .inputDnD .para-text {
  color: rgba(25, 32, 32, 0.5) !important;
}

.contact-us-main .btn-grp .submit-btn {
  background: var(--clr-black) !important;
}

.contact-us-main .btn-grp .submit-btn span {
  color: var(--clr-white) !important;
}

.contact-us-main .btn-grp .submit-btn::before {
  background: var(--clr-white);
}

.contact-us-main .btn-grp .submit-btn:hover {
  box-shadow: inset 0 0 0 2px #192020 !important;
}

@media only screen and (max-width: 1199px) {
  .contact-us-main .btn-grp .submit-btn:hover {
    box-shadow: none !important;
  }
}

.contact-us-main .btn-grp .submit-btn:hover span {
  color: var(--clr-black) !important;
}

.contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn {
  border: 1px solid var(--clr-black);
}
@media only screen and (max-width: 1199px) {
  .contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:hover,
  .contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:focus {
    outline: none;
  }
}
.contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn .icon:before {
  background-color: var(--clr-white);
}

.contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:hover .icon:before,
.contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:focus .icon:before {
  background-color: var(--clr-black);
}

@media only screen and (max-width: 1199px) {
  .contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:hover .icon:before,
  .contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:focus .icon:before {
    background-color: #fff;
  }
}

.contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:focus span {
  color: var(--clr-black) !important;
}
@media only screen and (max-width: 1199px) {
  .contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:hover span,
  .contact-us-main .contact-wrapper .inner-content .btn-grp .submit-btn:focus span {
    color: var(--clr-white) !important;
  }
}
@media only screen and (max-width: 1199px) {
  .contact-us-main .btn-grp .submit-btn:hover,
  .contact-us-main .btn-grp .submit-btn:focus span {
    color: var(--clr-white) !important;
  }
}

.contact-us-main .contact-company-details {
  background: #9fe9f6;
  padding: 30px;
  border-radius: 24px;
  margin: 30px 0;
}

.contact-us-main .contact-bedges {
  margin-top: 60px;
}

@media screen and (max-width: 1599px) {
  .contact-us-main .contact-company-details {
    padding: 25px;
    margin: 30px 0;
  }

  .contact-us-main .contact-bedges {
    margin-top: 55px;
  }
}

@media screen and (max-width: 1199px) {
  .contact-us-main .contact-company-details {
    padding: 25px;
    margin: 55px 0 25px;
  }

  .contact-us-main .contact-bedges {
    margin-top: 55px;
  }
}

@media screen and (max-width: 991px) {
  .contact-us-main .contact-company-details {
    padding: 25px;
    margin: 50px 0 20px;
  }

  .contact-us-main .contact-bedges {
    margin-top: 50px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us-main .contact-company-details {
    padding: 25px;
    margin: 45px 0 15px;
  }

  .contact-us-main .contact-bedges {
    margin-top: 45px;
  }
}

@media screen and (max-width: 576px) {
  .contact-us-main .contact-company-details {
    padding: 20px;
    border-radius: 16x;
    margin: 15px 0 0;
  }

  .contact-us-main .contact-bedges {
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .contact-us-main .contact-company-details P {
    line-height: 2rem;
  }
}
@media screen and (max-width: 575px) {
  .contact-us-main .contact-company-details P {
    line-height: 1.8rem;
    word-break: break-word;
  }
}
@media screen and (max-width: 375px) {
  .contact-us-main .contact-company-details P {
    font-size: 18px;
  }
}
.contact-us-main .SumoSelect.open .search-txt {
  color: #192020;
}

.country-code .select2-container {
  border-bottom: none;
}

.select-country .select2-container .select2-selection--single .select2-selection__rendered,
.country-code .select2-container .select2-selection--single .select2-selection__rendered,
.country-code .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  display: flex;
  align-items: center;
}

.mi-modal-body .select-country .select2-container {
  border-bottom: 1px solid #e6e6e6 !important;
}

.mi-modal-body .select-country .select2-container .select2-selection--single .select2-selection__rendered,
.mi-modal-body .country-wrap .select2-container .select2-selection--single .select2-selection__rendered {
  color: rgba(25, 32, 32, 0.5) !important;
}

.contact-us-main .country-code .select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--clr-black) !important;
}

.mi-modal-body .contact-wrapper .inner-content .country-wrap {
  border-bottom: 1px solid #e6e6e6;
}

.mi-modal-body .contact-wrapper .inner-content .country-wrap .country-number:before,
.contact-us-main .contact-wrapper .inner-content .country-wrap .country-number:before {
  background: #e6e6e6;
}

.contact-us-main .form-control:hover,
.contact-us-main .contact-wrapper .inner-content .form-control-textarea:hover {
  border-bottom: 1px solid #e6e6e6 !important;
}

.select2-container {
  z-index: 1070 !important;
  border-bottom: none !important;
}

.country-list .select2-container {
  border-bottom: 1px solid var(--clr-dark-black) !important;
}

#file-upload-filename a {
  border: 1px solid;
  margin-left: 5px;
  margin-top: 1px;
}

#file-upload-filename a .icon {
  height: 16px;
  width: 16px;
}

#file-upload-filename a .icon::before {
  background-color: var(--clr-light-green);
}

#file-upload-filename a span {
  font-size: 16px;
}

.contact-us-main .upload-files .inputDnD #file-upload-filename {
  color: var(--clr-black) !important;
}

.grecaptcha-badge {
  display: none;
}

.error.error-message {
  font-size: 10px;
  padding-top: 3px;
}

.explore-specialise-teams.centered #myTabs {
  display: inline-flex;
}

@media screen and (max-width: 1365px) {
  .explore-specialise-teams.centered #myTabs {
    border-radius: 10px !important;
  }
}

@media screen and (max-width: 1365px) {
  .explore-specialise-teams.centered .nav-link {
    border-radius: 10px !important;
  }
}

.header {
  border-bottom: 1px solid rgba(25, 32, 32, 0.1);
  background: #fff;
  z-index: 1010;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.header__inner {
  padding: 0px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 1599px) {
  .header__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1365px) {
  .header__inner {
    padding: 0 40px;
  }
}

@media screen and (max-width: 1199px) {
  .header__inner {
    padding: 14px 20px;
  }
}

@media screen and (max-width: 1199px) {
  .header__nav {
    position: fixed;
    top: 77px;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 15px;
    height: calc(100vh - 77px);
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    padding-bottom: 30px;
    pointer-events: none;
    /*transition: visibility 0.3s ease, opacity 0.3s ease;*/
  }
}

@media screen and (max-width: 1199px) {
  .is-menu-open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
}

.header__nav-link {
  text-transform: uppercase;
}

.header__nav.active::before {
  opacity: 1;
  visibility: visible;
}

.header__nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 1199px) {
  .header__nav > ul {
    padding: 0;
    border-radius: 15px;
    display: grid;
    grid-gap: 5px;
  }
}

@media screen and (max-width: 991px) {
  .header__nav > ul {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 1199px) {
  .header__nav > ul > li {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 10px;
  }
}
@media screen and (max-width: 991px) {
  .header__nav > ul > li {
    padding: 5px 10px;
  }
}

@media screen and (max-width: 1199px) {
  .header__nav > ul > li.active {
    background-color: #f7f7f7;
  }
}

@media screen and (max-width: 991px) {
  .header__nav > ul > li.active::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    top: 40px;
    left: 0;
    background: #fff;
    z-index: 4;
  }
}

@media screen and (max-width: 767px) {
  .header__nav > ul > li.active::after {
    top: 36px;
    height: 4px;
  }
}

@media screen and (max-width: 1199px) {
  .header__nav > ul > li:not(:last-child) {
    border-radius: 12px;
  }
}

.header__nav > ul > li:not(:last-child) > .header__nav-link {
  opacity: 0.5;
  /* padding: 28px 0; */
  display: block;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/* .header__nav > ul > li:not(:last-child) > .header__nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  transform: translate(-50%, -50%);
  width: calc(100% + 30px);
} */

@media screen and (max-width: 1199px) {
  .header__nav > ul > li:not(:last-child) > .header__nav-link {
    padding: 5px 0;
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .header__nav > ul > li:not(:last-child) > .header__nav-link {
    padding: 0;
  }
}

/* .header__nav > ul > li:not(:last-child) > .header__nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
} */
@media screen and (max-width: 1199px) {
  .header__nav > ul > li:not(:last-child) > .header__nav-link::after {
    bottom: 4px;
  }
}

@media screen and (max-width: 767px) {
  .header__nav > ul > li:not(:last-child) > .header__nav-link::after {
    bottom: 0;
  }
}

.header__nav > ul > li:not(:last-child) > .header__nav-link:focus,
.header__nav > ul > li:not(:last-child) > .header__nav-link:hover {
  opacity: 1;
  outline: 0;
}

.header__nav > ul > li:not(:last-child) > .header__nav-link:hover::after {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

/* .header__nav > ul > li:not(:last-child):hover .header__nav-inner {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
} */
.header__nav > ul > li:not(:last-child):hover > a {
  opacity: 1;
}

.header__nav > ul > li:not(:last-child):hover > a::after {
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
}

@media screen and (max-width: 1199px) {
  .header__nav > ul > li:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.header__nav > ul > li:last-child {
  padding: 11px 0;
}

.header__nav > ul > li:last-child a {
  color: #fff;
  padding: 16px 25px;
  justify-content: center;
  border-radius: 30px;
  background: #192020;
  display: inline-flex;
  position: relative;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #192020;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media screen and (max-width: 1599px) {
  .header__nav > ul > li:last-child a {
    padding: 12px 22px;
  }
}

@media screen and (max-width: 1199px) {
  .header__nav > ul > li:last-child a {
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .header__nav > ul > li:last-child a {
    padding: 8px 16px;
    gap: 6px;
  }
}

.header__nav > ul > li:last-child a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.header__nav > ul > li:last-child a span {
  position: relative;
}

.header__nav > ul > li:last-child a .icon,
.header__nav > ul > li:last-child a .material-symbols-rounded {
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .header__nav > ul > li:last-child a .icon,
  .header__nav > ul > li:last-child a .material-symbols-rounded {
    transform: rotate(45deg);
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .header__nav > ul > li:last-child a .material-symbols-rounded {
    font-size: 20px;
  }
}

.header__nav > ul > li:last-child a:focus,
.header__nav > ul > li:last-child a:hover {
  color: #192020;
}

@media only screen and (max-width: 1199px) {
  .header__nav > ul > li:last-child a:focus,
  .header__nav > ul > li:last-child a:hover {
    color: #fff;
  }
}

.header__nav > ul > li:last-child a:focus::before,
.header__nav > ul > li:last-child a:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

@media only screen and (max-width: 1199px) {
  .header__nav > ul > li:last-child a:focus::before,
  .header__nav > ul > li:last-child a:hover::before {
    display: none;
  }
}

.header__nav > ul > li:last-child a .icon::before,
.header__nav > ul > li:last-child a .icon::before {
  background-color: #fff;
}

.header__nav > ul > li:last-child a:focus .icon::before,
.header__nav > ul > li:last-child a:hover .icon::before {
  background-color: #192020;
}

@media only screen and (max-width: 1199px) {
  .header__nav > ul > li:last-child a:focus .icon::before,
  .header__nav > ul > li:last-child a:hover .icon::before {
    background-color: #fff;
  }
}

.header__nav > ul > li:last-child a:focus .icon,
.header__nav > ul > li:last-child a:hover .icon,
.header__nav > ul > li:last-child a:focus .material-symbols-rounded,
.header__nav > ul > li:last-child a:hover .material-symbols-rounded {
  transform: rotate(45deg);
}

.header__nav-inner {
  position: fixed;
  top: 81px;
  right: 250px;
  width: 1540px;
  display: none;
}

@media screen and (max-width: 1920px) {
  .header__nav-inner {
    right: initial;
    left: 50%;
    transform: translateX(-50%);
  }
}

.header__overlay {
  position: fixed;
  top: 81px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100vh - 80px);
  background: rgba(25, 32, 32, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  z-index: 10;
  display: none;
}

@media screen and (max-width: 1599px) {
  .header__overlay {
    top: 72px;
    height: calc(100vh - 72px);
  }
}

@media screen and (max-width: 1023px) {
  .header__overlay {
    display: none !important;
  }
}

@media screen and (max-width: 1599px) {
  .header__nav-inner {
    padding: 0 20px;
    width: 100%;
    top: 73px;
  }
}

@media screen and (max-width: 1199px) {
  .header__nav-inner {
    height: auto;
    width: 100%;
    max-width: calc(100vw - 50px);
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    top: initial;
    left: initial;
    padding: 0;
    display: none;
    transform: translate(0);
    background: transparent;
  }
}

.header__hamburger-wrapper {
  display: none;
}

@media screen and (max-width: 1199px) {
  .header__hamburger-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (max-width: 991px) {
  .header__logo img {
    width: 100px;
  }
}

.header__menu {
  width: 1540px;
  /* margin: 0 250px 0 auto; */
  margin: 0 0 0 auto;
  padding: 20px;
  background-color: #fff;
  position: relative;
  border-radius: 0px 0px 10px 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 10px;
}

@media screen and (max-width: 1920px) {
  .header__menu {
    margin: 0 auto;
    /*transform: translateX(240px); */
  }
}

@media screen and (max-width: 1599px) {
  .header__menu {
    max-width: 1500px;
    width: 100%;
    padding: 10px;
  }
}
@media screen and (max-width: 1499px) {
  .header__menu {
    max-width: 1440px;
    width: 100%;
    padding: 10px;
  }
}

@media screen and (max-width: 1199px) {
  .header__menu {
    border-radius: 10px;
    padding: 0;
    padding-top: 20px;
    background: transparent;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .header__menu {
    grid-template-columns: 1fr;
  }
}

/*header menu with 2 columns*/
.header__menu--two-col {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .header__menu--two-col {
    grid-template-columns: 1fr;
  }
}

.header__menu--two-col ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1023px) {
  .header__menu--two-col ul {
    display: block;
  }
}

.header__menu--two-col ul li {
  width: 50%;
}

@media screen and (max-width: 1023px) {
  .header__menu--two-col ul li {
    width: 100%;
  }
}

@media only screen and (min-width: 1366px) {
  .header__menu--two-col ul li:nth-child(2) a {
    padding-top: 0;
  }
}

.header__menu--two-col .header__col:nth-child(odd)::after {
  display: none;
}
/*header menu with 2 columns*/

/*header menu with 2 columns*/
.header__menu--three-col {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1199px) {
  .header__menu--three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .header__menu--three-col {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1199px) {
  .header__menu--three-col .header__col.with-cta {
    display: none;
  }
}

.header__menu--three-col ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1199px) {
  .header__menu--three-col ul {
    display: block;
  }
}

.header__menu--three-col li {
  width: 50%;
}

@media screen and (max-width: 1199px) {
  .header__menu--three-col li {
    width: 100%;
  }
}

.header__menu--three-col.without-cta li {
  width: 100%;
}
@media only screen and (min-width: 1366px) {
  .header__menu--three-col.with-newcta ul li:nth-child(2) a {
    padding-top: 0;
  }
}

.header__menu--three-col .header__col:nth-child(last)::after {
  display: none;
}
/*header menu with 2 columns*/

.header__menu--four-col {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1365px) {
  .header__menu--four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .header__menu--four-col {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1365px) {
  .header__menu--four-col ul {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1199px) {
  .header__menu--four-col ul {
    display: block;
  }
}

@media screen and (max-width: 1365px) {
  .header__menu--four-col ul li {
    width: 50%;
  }
}

@media screen and (max-width: 1199px) {
  .header__menu--four-col ul li {
    width: 100%;
  }
}

@media screen and (max-width: 1365px) {
  .header__menu--four-col .header__col:nth-child(odd)::after {
    display: none;
  }
}
@media screen and (max-width: 1365px) {
  .header__menu--four-col .header__col:nth-child(odd) .border-div:before {
    display: none;
  }
}

/*--- Five Column Menu start - 122 ---*/
.header__menu--five-col {
  grid-template-columns: repeat(5, 1fr);
  max-height: calc(100vh - 100px);
  overflow: auto;
}

@media screen and (max-width: 1365px) {
  .header__menu--five-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1279px) {
  .header__menu--five-col {
    max-height: calc(100vh - 92px);
  }
}

@media screen and (max-width: 991px) {
  .header__menu--five-col {
    max-height: initial;
  }
}

@media screen and (max-width: 767px) {
  .header__menu--five-col {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1365px) {
  .header__menu--five-col ul {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1199px) {
  .header__menu--five-col ul {
    display: block;
  }
}

@media screen and (max-width: 1365px) {
  .header__menu--five-col ul li {
    width: 50%;
  }
}

@media screen and (max-width: 1199px) {
  .header__menu--five-col ul li {
    width: 100%;
  }
}

@media screen and (max-width: 1365px) {
  .header__menu--five-col .header__col:nth-child(odd)::after {
    display: none;
  }
}

@media screen and (max-width: 1365px) {
  .header__menu--five-col .header__col:nth-child(odd) .border-div:before {
    display: none;
  }
}

/*--- Five Column Menu end - 122 ---*/

@media screen and (max-width: 1199px) {
  .header__menu--work {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .header__menu--work .header__col:first-child {
    grid-column: span 2;
    order: 99;
  }
}

@media screen and (max-width: 991px) {
  .header__menu--work .header__col-card,
  .header__menu--work .header__col-title {
    display: none;
  }
}

.header__menu--responsive {
  display: none;
}

@media screen and (max-width: 1199px) {
  .header__menu--responsive {
    display: block;
  }
}

.header__menu-buttn {
  display: none;
  padding: 0;
  border: 0;
  background-color: transparent;
  height: 26px;
  width: 26px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 16px;
  /*transition: transform 0.3s ease;*/
}

@media screen and (max-width: 1199px) {
  .header__menu-buttn {
    display: flex;
    top: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header__menu-buttn {
    top: 8px;
  }
}

@media screen and (max-width: 767px) {
  .header__menu-buttn {
    top: 5px;
    right: 5px;
  }
}

.header__menu-buttn.is-active {
  transform: scaleY(-1);
}

.header__col {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
/*.header__col:first-child .border-div:before{*/
/*    display: none;*/
/*}*/

@media screen and (min-width: 1200px) {
  .header__col > .border-div > ul > li:first-child a {
    padding-top: 0;
  }
}

@media screen and (max-width: 1199px) {
  .header__col:nth-child(odd)::after {
    display: none;
  }
}

.header__col--span-3 {
  grid-column: span 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f7f7;
  border-radius: 16px;
  padding: 20px;
  gap: 20px;
}

@media screen and (max-width: 1365px) {
  .header__col--span-3 {
    grid-column: span 2;
  }
}

@media screen and (max-width: 767px) {
  .header__col--span-3 {
    grid-column: span 1;
    display: grid;
    grid-gap: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .header__col--span-3 {
    background-color: #fff;
  }
}

.header__col--span-3 p {
  margin: 0;
}

@media screen and (max-width: 1599px) {
  .header__col--span-3 .btn-black {
    flex: 0 0 215px;
  }
}

/*.header__col--row-span-2 {
  grid-row: span 2;
}
@media screen and (max-width: 1023px) {
  .header__col--row-span-2 {
    grid-row: span 1;
    order: -1;
  }
}*/
.header__col-card {
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  margin-bottom: 30px;
}

@media screen and (max-width: 1599px) {
  .header__col-card {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .header__col-card {
    border-radius: 14px;
  }
}

.header__col-card p {
  margin: 0;
  line-height: 1.5;
}

.header__col-card-text {
  margin-bottom: 24px;
}

.header__col-card-auth-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1599px) {
  .header__col-card-auth-info {
    gap: 10px;
  }
}

.header__col-card-auth {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__col-card-play {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  position: relative;
  overflow: hidden;
  width: 56px;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  border-radius: 30px;
  border: 1px solid #192020;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

@media screen and (max-width: 1599px) {
  .header__col-card-play {
    height: 48px;
    width: 48px;
  }
}

.header__col-card-play span {
  position: relative;
  z-index: 1;
}
.header__col-card-play .icon {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.header__col-card-play::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.header__col-card-play:hover,
.header__col-card-play:focus {
  color: #fff;
}

.header__col-card-play:hover .icon:before,
.header__col-card-play:focus .icon:before {
  background-color: var(--clr-white);
}

.header__col-card-play:hover::before,
.header__col-card-play:focus::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.header__col-card-auth-country {
  color: #192020;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media screen and (max-width: 1599px) {
  .header__col-card-auth-country img {
    width: 18px;
    height: 18px;
  }
}

.header__col-card-auth-name {
  color: #192020;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 1599px) {
  .header__col-card-auth-name {
    font-size: 18px;
  }
}

.header__col-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 500;
  color: #192020;
  margin-bottom: 22px;
}

@media screen and (max-width: 1599px) {
  .header__col-title {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

@media screen and (max-width: 1365px) {
  .header__col-title {
    border-radius: 14px;
  }
}

@media screen and (max-width: 991px) {
  .header__col-title {
    border-radius: 8px;
    padding: 8px;
  }
}

.header__col-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  min-width: 40px;
}

@media screen and (max-width: 1599px) {
  .header__col-icon {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
}

.header__col-icon .icon {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1599px) {
  .header__col-icon .icon {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 1599px) {
  .header__col-icon .material-symbols-rounded {
    font-size: 20px;
  }
}

.header__col-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--clr-text);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  opacity: 0.6;
  padding: 10px 8px 10px 5px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

@media screen and (max-width: 1599px) {
  .header__col-link {
    padding: 8px 8px;
  }
}
@media screen and (min-width: 1366px) and (max-width: 1599px) {
  .header__col-link {
    white-space: normal;
  }
}
@media screen and (max-width: 1365px) {
  .header__col-link {
    padding: 2px 6px;
  }
}
@media screen and (max-width: 1199px) {
  .header__col-link {
    white-space: normal;
  }
}

.header__col-link .material-symbols-rounded {
  margin-top: -1px;
}

.header__col-link:focus,
.header__col-link:hover {
  opacity: 1;
}

.header__col .border-div {
  position: relative;
  height: 100%;
}
.header__col .border-div:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #f0f0f0;
}
@media only screen and (max-width: 767px) {
  .header__col .border-div:before {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .header__col:nth-child(odd) .border-div:before {
    display: none;
  }
}
.header__col .border-div .cta-content {
  padding-left: 15px;
}
.header__col:first-child .border-div:before {
  display: none;
}
.header__col-box {
  background-color: var(--clr-light-grey-2);
  padding: 20px;
  border-radius: 16px;
}

@media screen and (max-width: 1023px) {
  .header__col-box {
    background-color: #fff;
  }
}

.header__col-box p {
  margin-bottom: 30px;
}

@media screen and (max-width: 1599px) {
  .header__col-box p {
    margin-bottom: 20px;
  }
}

.header__work-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  -webkit-clip-path: inset(0 round 20px);
  clip-path: inset(0 round 20px);
  display: block;
}

.header__work-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.header__work-card-text {
  position: absolute;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 16px 20px;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border-radius: 0 0 20px 20px;
  background: rgba(25, 32, 32, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header__work-card-text .material-symbols-rounded {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.header__work-card:hover img {
  transform: scale(1.04);
}

.header__work-card .header__work-card-text .icon {
  transition: all 0.3s ease;
}

.header__work-card .header__work-card-text .icon::before {
  background-color: #fff;
}

.header__work-card:hover .header__work-card-text .icon {
  transform: rotate(45deg);
}

.header .hamburger {
  display: none;
  font: inherit;
  overflow: visible;
  margin: 0;
  cursor: pointer;
  /*transition-timing-function: linear;*/
  /*transition-duration: 0.15s;*/
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  height: 20px;
  text-align: center;
  background-color: transparent;
  padding: 0;
}

@media screen and (max-width: 1199px) {
  .header .hamburger {
    display: block;
  }
}

.header .hamburger .hamburger-box {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 24px;
}

/*for icon*/
/*.header .hamburger .hamburger-box {*/
/*    display: inline-block;*/
/*    position: relative;*/
/*    width: 28px;*/
/*    height: 21px;*/
/*}*/
/*for icon*/

/*.header .hamburger .hamburger-inner::before,*/
/*.header .hamburger .hamburger-inner::after,*/
/*.header .hamburger .hamburger-inner {*/
/*    transition-timing-function: ease;*/
/*    transition-property: transform;*/
/*    background-color: #192020;*/
/*    transition-duration: 0.15s;*/
/*    position: absolute;*/
/*    border-radius: 4px;*/
/*    width: 28px;*/
/*    height: 2px;*/
/*}*/

.header .hamburger .hamburger-inner::before,
.header .hamburger .hamburger-inner::after,
.header .hamburger .hamburger-inner {
  background-color: #192020;
  position: absolute;
  border-radius: 4px;
  width: 28px;
  height: 2px;
}

/*for icon*/
/*.header .hamburger .hamburger-inner {*/
/*    width: 28px;*/
/*    height: 21px;*/
/*    background: url("../img/hamburger.svg") no-repeat center;*/
/*    background-size: cover;*/
/*}*/
/*for icon*/

/*.header .hamburger .hamburger-inner {*/
/*  top: 50%;*/
/*  display: block;*/
/*  margin-top: -2px;*/
/*  transition-duration: 0.22s;*/
/*  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);*/
/*}*/

.header .hamburger .hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

/*for icon*/
/*.header .hamburger .hamburger-inner {*/
/*  top: 50%;*/
/*  display: block;*/
/*  margin-top: -2px;*/
/*}*/
/*for icon*/

/*.is-menu-open .header .hamburger .hamburger-inner {*/
/*    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);*/
/*    transform: rotate(225deg);*/
/*    transition-delay: 0.12s;*/
/*}*/

.is-menu-open .header .hamburger .hamburger-inner {
  transform: rotate(225deg);
}

/*for icon*/
/*.is-menu-open .header .hamburger .hamburger-inner {*/
/*    background: url("../img/hamburger-close.svg") no-repeat center;*/
/*    background-size: contain;*/
/*}*/
/*for icon*/

.header .hamburger .hamburger-inner::before,
.header .hamburger .hamburger-inner::after {
  content: "";
  display: block;
}

/*.header .hamburger .hamburger-inner::before {*/
/*  transition:*/
/*    top 0.1s ease-in 0.25s,*/
/*    opacity 0.1s ease-in;*/
/*  top: -8px;*/
/*}*/
.header .hamburger .hamburger-inner::before {
  /*transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;*/
  top: -8px;
}

.is-menu-open .header .hamburger .hamburger-inner::before {
  top: 0;
  /*transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;*/
  opacity: 0;
  top: -8px;
}
/*.is-menu-open .header .hamburger .hamburger-inner::before {*/
/*    top: 0;*/
/*    transition:*/
/*            top 0.1s ease-out,*/
/*            opacity 0.1s ease-out 0.12s;*/
/*    opacity: 0;*/
/*}*/
.is-menu-open .header .hamburger .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

/*.header .hamburger .hamburger-inner::after {*/
/*  transition:*/
/*    bottom 0.1s ease-in 0.25s,*/
/*    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);*/
/*  bottom: -8px;*/
/*}*/
.header .hamburger .hamburger-inner::after {
  /*transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);*/
  bottom: -8px;
  bottom: -8px;
}

/*.is-menu-open .header .hamburger .hamburger-inner::after {*/
/*  transition:*/
/*    bottom 0.1s ease-out,*/
/*    transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;*/
/*  transform: rotate(-90deg);*/
/*  bottom: 0;*/
/*}*/
.is-menu-open .header .hamburger .hamburger-inner::after {
  /*transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;*/
  transform: rotate(-90deg);
  bottom: 0;
  transform: rotate(-90deg);
  bottom: 0;
}

.ppc-header.header .mobile-btn {
  background: #ed184f;
  padding: 17px 20px 18px;
  line-height: 15px;
  font-size: 15px;
  border-radius: 28px;
  color: #fff;
  text-transform: uppercase;
  display: none;
}

@media screen and (max-width: 767px) {
  .ppc-header.header .hamburger .hamburger-box {
    display: none;
  }

  .ppc-header.header .mobile-btn {
    display: block;
  }
}
@media screen and (max-width: 375px) {
  .ppc-header.header .mobile-btn {
    padding: 17px 13px 18px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1023px) {
  .ppc-header.header .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    position: static;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 0;
  }

  .ppc-header.header .hamburger {
    display: none;
  }

  .ppc-header.header .header__nav > ul > li:not(:last-child) > .header__nav-link {
    font-size: 14px;
  }

  .ppc-header.header .header__nav > ul > li:last-child {
    padding: 0;
  }

  .ppc-header.header .header__nav > ul > li:last-child a {
    padding: 8px 16px;
    font-size: 14px;
  }

  .ppc-header.header .header__nav > ul > li:not(:last-child) {
    padding: 0;
  }

  .ppc-header.header .header__nav {
    margin-left: auto;
  }

  .ppc-header.header .header__nav > ul {
    display: flex;
    gap: 14px;
    margin-bottom: 0;
    padding: 0;
    justify-content: flex-end;
  }

  .services-hero-section .font-80 {
    font-size: 42px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1699px) {
  .services-hero-section .font-80 {
    font-size: 48px;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  .ppc-header.header .header__nav {
    display: none;
  }

  .services-hero-section .font-80 {
    font-size: 36px;
  }
}

.services-new-hero-section .services-hero-section-video-parent {
  position: relative;
}

.services-new-hero-section .services-hero-section-video-parent .services-hero-section-video-btn-parent {
  position: absolute;
  right: 20px;
  bottom: 24px;
  border-radius: 100px;
  animation: ripple 2s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  }

  100% {
    box-shadow: 0px 0px 2px 20px rgba(0, 0, 0, 0);
  }
}

.services-new-hero-section .services-hero-section-video-parent .services-hero-section-video-btn {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 100px);
  clip-path: inset(0 round 100px);
}

.services-new-hero-section .services-hero-section-video-parent .services-hero-section-video-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.services-new-hero-section .services-hero-section-video-parent .services-hero-section-video-btn span {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.services-new-hero-section .services-hero-section-video-parent .services-hero-section-video-btn:hover span {
  color: #000;
}

.services-new-hero-section .services-hero-section-video-parent .services-hero-section-video-btn:hover::after {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-dark-black);
  border-radius: 0;
  height: calc(2.2em + 0.75rem + 9px);
  padding: 0.375rem 1rem;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 767px) {
  .form-control {
    height: auto;
    min-height: 46px;
    padding: 8px 0;
  }
}

.form-control:hover {
  outline: none;
  border: none !important;
  border-bottom: 1px solid var(--clr-dark-black) !important;
  box-shadow: none !important;
  background-color: transparent;
}

.form-control:focus {
  outline: none;
  border: none !important;
  border-bottom: 1px solid var(--clr-dark-black) !important;
  box-shadow: none !important;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}

.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control-textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-dark-black);
  border-radius: 0;
  height: auto;
  resize: vertical;
  padding: 0.375rem 1rem;
  color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 767px) {
  .form-control-textarea {
    padding: 0.375rem 0;
  }
}

.form-control-textarea:hover {
  outline: none;
  border: none !important;
  border-bottom: 1px solid var(--clr-dark-black) !important;
  box-shadow: none !important;
  background-color: transparent;
}

.form-control-textarea:focus {
  outline: none;
  border: none !important;
  border-bottom: 1px solid var(--clr-dark-black) !important;
  box-shadow: none !important;
  background-color: transparent;
}

.form-control-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control-textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-control-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.upload-files .inputDnD {
  position: relative;
  min-height: 4.5em;
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  padding: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

@media only screen and (max-width: 575px) {
  .upload-files .inputDnD {
    min-height: 7em;
  }
}

@media only screen and (max-width: 480px) {
  .upload-files .inputDnD {
    min-height: 8em;
  }
}

@media only screen and (max-width: 767px) {
  .upload-files .inputDnD .inside-div {
    text-align: left;
  }
}

.upload-files .inputDnD .para-text {
  color: rgba(255, 255, 255, 0.6);
}

.upload-files .inputDnD .form-control-file {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  min-height: 6em;
  outline: 0;
  visibility: visible;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

@media only screen and (max-width: 575px) {
  .upload-files .inputDnD {
    min-height: 7em;
  }
}

@media only screen and (max-width: 480px) {
  .upload-files .inputDnD {
    min-height: 8em;
  }
}

.upload-files .inputDnD .inside-div .icon {
  gap: 10px;
  cursor: pointer;
  margin-bottom: 10px;
}

.upload-files .inputDnD .inside-div .icon.icon-attach_file {
  margin: 0;
  transform: rotate(45deg);
}

.upload-files .inputDnD .inside-div .icon .material-symbols-rounded {
  transform: rotate(45deg);
}

.upload-files .inputDnD .inside-div .icon:before {
  background-color: transparent;
}

.upload-files .inputDnD input[type="file"] {
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.upload-files .inputDnD #file-upload-filename {
  color: var(--clr-light-green) !important;
  bottom: 10px;
  right: 0;
  left: 0;
  font-size: 14px;
  z-index: 2;
  position: relative;
  margin-top: 15px;
}

@media only screen and (max-width: 375px) {
  .upload-files .inputDnD .form-control-file:after {
    font-size: 14px;
  }
}

@media only screen and (max-width: 575px) {
  .upload-files .inputDnD .form-control-file:before {
    background-size: 40px;
  }
}

.upload-files .inputDnD input#file-upload-button {
  opacity: 0;
}

.select2-container {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--clr-dark-black);
  border-radius: 0;
  height: calc(2.2em + 0.75rem + 9px);
  padding: 0.375rem 1rem;
  width: 100% !important;
}

.select2-container .select2-selection--single {
  height: 100% !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0 !important;
  outline: none;
  border: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: normal;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.contact-wrapper .inner-content {
  padding: 35px;
  background-color: var(--clr-light-grey);
  border: 1px solid var(--clr-dark-black);
}

@media only screen and (max-width: 1199px) {
  .contact-wrapper .inner-content {
    padding: 25px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-wrapper .inner-content {
    text-align: center;
  }
}

.contact-wrapper .inner-content .country-wrap {
  display: flex;
  border-bottom: 1px solid var(--clr-dark-black);
}

.contact-wrapper .inner-content .country-wrap .country-code {
  width: 140px;
}

.contact-wrapper .inner-content .country-wrap .country-number {
  width: 100%;
  position: relative;
}

.contact-wrapper .inner-content .country-wrap .country-number:before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 28px;
  background: var(--clr-dark-black);
  top: 50%;
  transform: translateY(-50%);
}

.contact-wrapper .inner-content .country-wrap .country-number .form-group .form-control {
  border-bottom: 1px solid transparent !important;
}

@media only screen and (max-width: 767px) {
  .contact-wrapper .inner-content .country-wrap .country-number .form-group .form-control {
    padding: 8px;
  }
}

.latest-footer-section {
  background-color: var(--clr-black);
  position: relative;
}

.latest-footer-section .new-latest-contactus {
  padding-bottom: 1.875rem;
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .new-latest-contactus {
    padding-bottom: 1.5rem;
  }
}

.latest-footer-section .new-latest-contactus .contact-detail-main {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main {
    grid-column-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main {
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main {
    flex-direction: column;
  }
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-form-left {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-form-left {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right {
    width: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right {
    padding-top: 2.5rem;
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right {
    padding-top: 1.5rem;
  }
}

.latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-one {
  padding: 0;
}

.latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-one a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1199px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-one {
    padding: 0;
  }
}

.latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-one .office-address {
  display: grid;
  width: 100%;
  grid-template-columns: 1.1fr 0.9fr;
  grid-column-gap: 15px;
}

@media only screen and (max-width: 767px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-one .office-address {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-one .office-address {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 15px;
  }
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .choose-country {
  margin: 10px 0 15px;
  width: 10rem;
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .email-us-project-careers {
  margin: 9px 0 15px;
  display: block;
}

@media only screen and (max-width: 1199px) {
  .latest-footer-section
    .new-latest-contactus
    .contact-detail-main
    .contact-detail-right
    .right-one
    .office-address
    .communication-location
    .choose-country {
    font-size: 1.3rem;
    line-height: 1.5rem;
    margin: 10px 0 10px;
  }
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-one
  .office-address
  .communication-location
  .choose-country
  .country-name
  img {
  margin-right: 0.5rem;
  width: 24px;
  aspect-ratio: auto 24/24;
  height: auto;
}

.latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .border-one {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  height: 1px;
  margin: 30px 0;
}

@media only screen and (max-width: 1199px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .border-one {
    margin: 40px 0;
  }
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .border-one {
    margin: 25px 0;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .border-one {
    margin: 20px 0;
  }
}

.latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-two {
  padding: 0;
}

@media only screen and (max-width: 1199px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-two {
    padding: 0;
  }
}

.latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-two .comm-main {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-two .comm-main {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
  }
}

@media only screen and (max-width: 767px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-two .comm-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .new-latest-contactus .contact-detail-main .contact-detail-right .right-two .comm-main {
    grid-template-columns: 1fr;
  }
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main:nth-child(1)
  .quick-address:nth-child(1) {
  margin-bottom: 10px;
}

@media only screen and (max-width: 575px) {
  .latest-footer-section
    .new-latest-contactus
    .contact-detail-main
    .contact-detail-right
    .right-two
    .comm-main:nth-child(1)
    .quick-address:nth-child(1) {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section
    .new-latest-contactus
    .contact-detail-main
    .contact-detail-right
    .right-two
    .comm-main
    .quick-address {
    margin-bottom: 15px;
  }
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main
  .social-media-icons {
  gap: 10px;
}

@media only screen and (max-width: 767px) {
  .latest-footer-section
    .new-latest-contactus
    .contact-detail-main
    .contact-detail-right
    .right-two
    .comm-main
    .social-media-icons {
    gap: 6px;
  }
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main
  .social-media-icons
  li
  img {
  width: 24px;
  aspect-ratio: auto 24/24;
  height: auto;
}

@media only screen and (max-width: 1199px) {
  .latest-footer-section
    .new-latest-contactus
    .contact-detail-main
    .contact-detail-right
    .right-two
    .comm-main
    .quick-address
    a {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main
  .quick-address
  a:hover {
  color: var(--clr-white);
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main:nth-child(2) {
  margin: 5px 0;
}

@media only screen and (max-width: 575px) {
  .latest-footer-section
    .new-latest-contactus
    .contact-detail-main
    .contact-detail-right
    .right-two
    .comm-main:nth-child(2) {
    margin: 0;
  }
}

.latest-footer-section
  .new-latest-contactus
  .contact-detail-main
  .contact-detail-right
  .right-two
  .comm-main:nth-child(2)
  .quick-address {
  margin: 10px 0;
}

@media only screen and (max-width: 575px) {
  .latest-footer-section
    .new-latest-contactus
    .contact-detail-main
    .contact-detail-right
    .right-two
    .comm-main:nth-child(2)
    .quick-address {
    margin: 0 0 15px;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section
    .new-latest-contactus
    .contact-detail-main
    .contact-detail-right
    .right-two
    .comm-main:last-child
    .quick-address {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .latest-footer-section .contact-bedges {
    margin-bottom: 1.5rem;
  }
}

.latest-footer-section .contact-bedges .company-rating .company-rating-outer {
  background-color: var(--clr-light-grey);
  padding: 22px 30px;
}

@media only screen and (max-width: 1199px) {
  .latest-footer-section .contact-bedges .company-rating .company-rating-outer {
    padding: 25px 20px;
  }
}

@media only screen and (max-width: 1023px) {
  .latest-footer-section .contact-bedges .company-rating .company-rating-outer {
    padding: 10px 20px;
  }
}

.latest-footer-section .contact-bedges .company-rating .company-rating-outer .companyrating-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  gap: 40px;
}

@media only screen and (max-width: 1799px) {
  .latest-footer-section .contact-bedges .company-rating .company-rating-outer .companyrating-list {
    gap: 10px;
  }
}

@media only screen and (max-width: 1365px) {
  .latest-footer-section .contact-bedges .company-rating .company-rating-outer .companyrating-list {
    overflow: auto;
    display: flex;
    white-space: nowrap;
  }
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item:first-child
  .rating-details {
  padding-left: 0;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item:last-child
  .rating-details {
  padding-right: 0;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item:last-child:after {
  content: none;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item:after {
  content: "";
  width: 1px;
  background-color: var(--clr-white);
  opacity: 0.3;
  position: absolute;
  right: -20px;
  height: 30px;
  top: calc(50% - 15px);
}

@media only screen and (max-width: 1799px) {
  .latest-footer-section
    .contact-bedges
    .company-rating
    .company-rating-outer
    .companyrating-list
    .companyrating-list-item:after {
    right: -8px;
  }
}

@media only screen and (max-width: 1799px) {
  .latest-footer-section
    .contact-bedges
    .company-rating
    .company-rating-outer
    .companyrating-list
    .companyrating-list-item {
    max-width: 19%;
  }
}

@media only screen and (max-width: 1199px) {
  .latest-footer-section
    .contact-bedges
    .company-rating
    .company-rating-outer
    .companyrating-list
    .companyrating-list-item {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details {
  display: flex;
  padding: 15px;
  gap: 20px;
  align-items: center;
  width: 220px;
  justify-content: space-between;
}

@media only screen and (max-width: 1365px) {
  .latest-footer-section
    .contact-bedges
    .company-rating
    .company-rating-outer
    .companyrating-list
    .companyrating-list-item
    .rating-details {
    padding: 10px;
    gap: 10px;
  }
}

@media only screen and (max-width: 1499px) {
  .latest-footer-section
    .contact-bedges
    .company-rating
    .company-rating-outer
    .companyrating-list
    .companyrating-list-item
    .rating-details {
    width: 200px;
  }
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-description {
  width: 135px;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-description
  img {
  height: auto;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-description
  .clutch-img {
  width: 65px;
  aspect-ratio: auto 65/22;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-description
  .goodfirm-img {
  width: 109px;
  aspect-ratio: auto 109/18;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-description
  .designrush-img {
  width: 109px;
  aspect-ratio: auto 109/18;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-description
  .topdev-img {
  width: 109px;
  aspect-ratio: auto 109/18;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-description
  .google-img {
  width: 64px;
  aspect-ratio: auto 64/22;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-items {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  min-width: 82px;
  justify-content: end;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-items
  .stars
  img {
  width: 15px;
  aspect-ratio: auto 15/14;
  height: auto;
}

.latest-footer-section
  .contact-bedges
  .company-rating
  .company-rating-outer
  .companyrating-list
  .companyrating-list-item
  .rating-details
  .rating-items
  .ratings {
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.latest-footer-section .footer-new-menus {
  width: 100%;
  padding: 1.875rem 0;
}

@media only screen and (max-width: 1365px) {
  .latest-footer-section .footer-new-menus {
    padding: 6rem 0;
  }
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .footer-new-menus {
    padding: 4rem 0 2.5rem;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .footer-new-menus {
    padding: 2.5rem 0;
  }
}

.latest-footer-section .footer-new-menus .footer-menu-box {
  display: grid;
  width: 100%;
  grid-template-columns: 1.1fr 1.1fr 1.2fr 0.8fr;
  grid-column-gap: 15px;
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .footer-new-menus .footer-menu-box {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .latest-footer-section .footer-new-menus .footer-menu-box {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .latest-footer-section .footer-new-menus .footer-menu-box .footer-grids {
    margin-bottom: 15px;
  }
}

.latest-footer-section .footer-new-menus .footer-menu-box .footer-grids .nav-title {
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .latest-footer-section .footer-new-menus .footer-menu-box .footer-grids .nav-title {
    margin: 8px 0;
    display: inline-block;
  }
}

.latest-footer-section .footer-new-menus .footer-menu-box .footer-grids ul {
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .footer-new-menus .footer-menu-box .footer-grids ul {
    display: none;
  }
}

.latest-footer-section .footer-new-menus .footer-menu-box .footer-grids ul li a {
  font-size: 16px;
  line-height: 1.8rem;
  color: var(--clr-white);
  display: inline-block;
  padding: 7px 0;
  opacity: 0.6;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .latest-footer-section .footer-new-menus .footer-menu-box .footer-grids ul li a {
    font-size: 15px;
    line-height: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .latest-footer-section .footer-new-menus .footer-menu-box .footer-grids ul li a {
    font-size: 14px;
    line-height: 22px;
  }
}

.latest-footer-section .footer-new-menus .footer-menu-box .footer-grids ul li a:hover {
  opacity: 1;
}

.latest-footer-section .footer-new-menus .footer-menu-box .footer-grids ul.collapsed {
  max-height: 0;
}

.latest-footer-section .footer-copy-right {
  border-top: 1px solid var(--clr-dark-black);
  width: 100%;
  padding: 1.675rem 0;
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .footer-copy-right {
    text-align: center;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .footer-copy-right {
    padding: 1.5rem 0;
  }
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .footer-copy-right .copyright-text {
    margin-top: 10px !important;
  }
}

.latest-footer-section .footer-copy-right .quick-links li {
  display: inline-block;
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .footer-copy-right .quick-links li {
    padding: 0 20px;
    margin-bottom: 5px;
    position: relative;
    border-right: 1px solid var(--clr-dark-black);
  }
}

.latest-footer-section .footer-copy-right .quick-links li a {
  font-size: 14px;
  line-height: 1.5rem;
  color: var(--clr-white);
  padding-right: 1.875rem;
}

@media only screen and (max-width: 991px) {
  .latest-footer-section .footer-copy-right .quick-links li a {
    padding-right: 1.375rem;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .footer-copy-right .quick-links li a {
    padding-right: 0;
  }
}

@media only screen and (max-width: 575px) {
  .latest-footer-section .footer-copy-right .quick-links li:last-child {
    border-right: none;
  }
}

.latest-footer-section .footer-copy-right .quick-links li:last-child a {
  padding-right: 0;
}

.home-page .sec-about {
  background-color: var(--clr-off-white);
}

.home-page .sec-about .about__slide {
  background-color: var(--clr-white);
}

.about .swiper-wrapper {
  transition-timing-function: linear !important;
}

.about .about__row {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media screen and (max-width: 1499px) {
  .about .about__row {
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 1199px) {
  .about .about__row {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }
}

@media screen and (max-width: 767px) {
  .about .about__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.about .about__sldier-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 1199px) {
  .about .about__sldier-nav {
    gap: 25px;
  }
}

@media screen and (max-width: 991px) {
  .about .about__sldier-nav {
    gap: 20px;
  }
}

.about .about__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.about .about__col {
  flex: 0 0 370px;
}

@media screen and (max-width: 1259px) {
  .about .about__col {
    flex: 0 0 calc(50% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .about .about__col {
    flex: 0 0 100%;
  }
}

.about .about__col .font-18 {
  font-weight: 300;
}

.about .about__col p {
  margin: 0;
}

.about .about__col p + p {
  margin-top: 16px;
}

.about .swiper {
  width: 100%;
}

.about .swiper-slide {
  height: auto;
}

.about .about__marqee-slider {
  display: none;
}

@media screen and (max-width: 767px) {
  .about .swiper-slide {
    width: 350px;
    flex: 0 0 auto;
    gap: 20px;
  }
}

@media screen and (max-width: 575px) {
  .about .swiper-slide {
    width: 90%;
    flex: 0 0 auto;
    gap: 20px;
  }
}

.about .about__card {
  max-width: 495px;
  width: 100%;
  padding: 30px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 190px;
  grid-gap: 20px;
  align-items: flex-end;
}

@media screen and (max-width: 1499px) {
  .about .about__card {
    padding: 20px;
  }
}

@media screen and (max-width: 1365px) {
  .about .about__card {
    padding: 16px;
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .about .about__card {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .about .about__card {
    flex: 0 0 100%;
    border-radius: 16px;
    grid-template-columns: 1fr 120px;
    padding: 10px;
    align-items: center;
  }

  .about .about__row {
    margin-bottom: 10px;
  }

  .about .about__marqee-slider {
    display: block;
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .about .about__row .about__card {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .about .about__card-text {
    margin: 0 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .about .about__card-text {
    margin: 0;
  }
}

.about .about__card img {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .about .about__card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}

.about span.d-block.font-60.about__card-title {
  line-height: 1;
  margin: 0;
}

@media screen and (max-width: 1365px) {
  .about span.d-block.font-60.about__card-title {
    font-size: 40px;
  }
}

@media screen and (max-width: 767px) {
  .about span.d-block.font-60.about__card-title {
    margin-bottom: 8px;
  }
}

.about .about__card-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about .material-symbols-rounded {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.about .about__slide {
  padding: 30px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1365px) {
  .about .about__slide {
    padding: 20px;
  }
}

@media screen and (max-width: 575px) {
  .about .about__slide {
    padding: 12px;
  }
}

.about .about__slide-img {
  /*height: 50px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 575px) {
  .about .about__slide-img {
    margin-bottom: 12px;
  }
}

.about .about__slide-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.about .about__slide-rating-text {
  line-height: 1;
  display: inline-block;
  position: relative;
  bottom: -2px;
  margin-left: 10px;
}

.about .about__slide-text {
  font-weight: 300;
  margin: 0;
}

.about.bg-white {
  background-color: #fff !important;
}

.about.bg-white .about__slide {
  background-color: #f7f7f7;
}

.our-work-main .mt-80 {
  margin-top: 80px;
}

@media screen and (max-width: 1599px) {
  .our-work-main .mt-80 {
    margin-top: 70px;
  }
}

@media screen and (max-width: 1199px) {
  .our-work-main .mt-80 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 991px) {
  .our-work-main .mt-80 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .our-work-main .mt-80 {
    margin-top: 25px;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .mt-80 {
    margin-top: 20px;
  }
}

.our-work-main .our-work {
  display: flex;
  gap: 20px;
  width: 100%;
  grid-column-gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .our-work-main .our-work {
    padding: 15px;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .our-work {
    display: block;
    padding: 15px;
  }
}

.our-work-main .our-work .our-work-left {
  width: 55%;
}

.our-work-main .our-work .our-work-left .portfolio-img img {
  aspect-ratio: auto 1520/1140;
  height: auto;
}

@media screen and (min-width: 1199px) {
  .our-work-main .our-work .our-work-left .portfolio-img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 1599px) {
  .our-work-main .our-work .our-work-left {
    width: 45%;
  }
}

@media screen and (max-width: 1365px) {
  .our-work-main .our-work .our-work-left {
    width: 40%;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .our-work .our-work-left {
    width: 100%;
  }
}

.our-work-main .our-work .our-work-right {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

@media screen and (max-width: 1599px) {
  .our-work-main .our-work .our-work-right {
    width: 55%;
  }
}

@media screen and (max-width: 1365px) {
  .our-work-main .our-work .our-work-right {
    width: 60%;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .our-work .our-work-right {
    width: 100%;
  }
}

.our-work-main .our-work .our-work-right hr {
  border-color: var(--clr-black);
  opacity: 0.1;
}

@media screen and (max-width: 1023px) {
  .our-work-main .our-work .our-work-right .design-development {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin: 0 0 8px 0;
  }
}

@media screen and (max-width: 1023px) {
  .our-work-main .our-work .our-work-right .design-development {
    display: none;
  }
}

.our-work-main .our-work .our-work-right .design-development li {
  padding: 8px 15px;
  display: inline-block;
  border-radius: 99em;
  margin: 0 6px 8px 0;
}

.our-work-main .our-work .app-features {
  background-color: #f7f7f7;
  border-radius: 24px;
  padding: 20px;
}

@media screen and (max-width: 1199px) {
  .our-work-main .our-work .app-features ul {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 575px) {
  .our-work-main .our-work .app-features ul {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

.our-work-main .our-work .app-features ul li {
  border: 1px dashed var(--clr-black);
  padding: 8px 12px 8px 10px;
  border-radius: 99em;
  margin: 0 6px 8px 0;
  display: inline-flex;
  align-items: center;
}

.our-work-main .our-work .app-features ul li span {
  height: 24px;
  width: 24px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.our-work-main .our-work .app-features ul li .material-symbols-rounded {
  font-size: 20px;
}

.our-work-main .our-work .btn-black {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (max-width: 375px) {
  .our-work-main .our-work .btn-black {
    padding: 8px 15px;
  }
}

/*--- Industry Focused Insights Start ---*/
.industry-focused-insights .nav {
  border-bottom: 1px solid rgba(25, 32, 32, 0.2);
  margin: 22px 0 30px 0;
}

@media screen and (max-width: 1599px) {
  .industry-focused-insights .nav {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    margin: 0 0 15px 0;
  }
}

.industry-focused-insights .nav .nav-item {
  flex-grow: 1;
}

@media screen and (max-width: 1599px) {
  .industry-focused-insights .nav .nav-item {
    text-align: center;
  }
}

.industry-focused-insights .nav .nav-item .nav-link {
  width: 100%;
  color: #0f1010;
  opacity: 0.7;
  /*color: var(--clr-black);*/
  /*opacity: 0.6;*/
  position: relative;
  padding: 0.8rem 1rem;
}

@media screen and (max-width: 1599px) {
  .industry-focused-insights .nav .nav-item .nav-link {
    padding: 0.8rem 2rem;
  }
}

.industry-focused-insights .nav .nav-item .nav-link:focus {
  outline: none;
}

.industry-focused-insights .nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0rem;
  height: 1px;
  border: 1px solid var(--clr-black);
  opacity: 0;
  left: 0;
}

.industry-focused-insights .nav .nav-item .nav-link.active {
  border-radius: 0;
  opacity: 1;
  color: var(--clr-black);
  background-color: transparent;
}

.industry-focused-insights .nav .nav-item .nav-link.active::before {
  opacity: 1;
}

.industry-focused-insights .more-industry {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
}

@media screen and (min-width: 1023px) and (max-width: 1599px) {
  .industry-focused-insights .more-industry {
    grid-column-gap: 25px;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .industry-focused-insights .more-industry {
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    overflow: auto;
    grid-column-gap: 20px;
    padding: 0 0 15px 2px;
  }
}

@media screen and (max-width: 575px) {
  .industry-focused-insights .more-industry {
    grid-template-columns: 1fr 1fr 1fr;
    display: flex;
    overflow: auto;
    grid-column-gap: 20px;
    padding: 0 0 15px 2px;
  }
}

@media screen and (max-width: 575px) {
  .industry-focused-insights .more-industry .card-main {
    min-width: 85%;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .industry-focused-insights .more-industry .card-main {
    min-width: 315px;
  }
}

.industry-focused-insights .more-industry .card-main .card-images {
  height: auto;
  width: 100%;
  max-width: 1146px;
  position: relative;
  overflow: hidden;
}

.industry-focused-insights .more-industry .card-main .card-images img {
  width: 100%;
  aspect-ratio: auto 1146/700;
  height: auto;
}

/*--- Industry Focused Insights End ---*/
/*--- section explore teams Start ---*/
.explore-specialise-teams {
  text-align: center;
}

.explore-specialise-teams .explore-tabs {
  display: inline-flex;
  padding: 5px;
  border-radius: 30px;
  background-color: var(--clr-off-white);
}

@media screen and (max-width: 1599px) {
  .explore-specialise-teams .explore-tabs {
    overflow: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

@media screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-tabs {
    border-radius: 10px 10px 0 0;
  }
}

@media screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-tabs {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
  }
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-tabs::-webkit-scrollbar {
    width: 0;
    display: none;
  }
}

@media screen and (max-width: 1599px) {
  .explore-specialise-teams .explore-tabs .nav-item {
    text-align: center;
  }
}

.explore-specialise-teams .explore-tabs .nav-item .nav-link {
  width: 100%;
  color: #0f1010;
  opacity: 0.7;
  position: relative;
  padding: 0.5rem 1.36rem;
  border-radius: 30px;
  border: 1px solid transparent;
}

@media screen and (max-width: 1599px) {
  .explore-specialise-teams .explore-tabs .nav-item .nav-link {
    padding: 0.5rem 2rem;
  }
}

@media screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-tabs .nav-item .nav-link {
    padding: 0.5rem 1.5rem;
    border-radius: 10px 10px 0 0;
  }
}

.explore-specialise-teams .explore-tabs .nav-item .nav-link:focus {
  outline: none;
}

.explore-specialise-teams .explore-tabs .nav-item .nav-link.active {
  opacity: 1;
  color: var(--clr-black);
  background-color: var(--clr-white);
}

.explore-specialise-teams .tab-content {
  overflow: hidden;
  margin-top: 50px;
}

@media only screen and (max-width: 991px) {
  .explore-specialise-teams .tab-content {
    margin-top: 30px;
  }
}

.explore-specialise-teams .tab-content .swiper-slide {
  height: auto;
}

.explore-specialise-teams .tab-content .card-outer {
  height: 100%;
}

.explore-specialise-teams .tab-content .card-outer .card-main {
  height: 100%;
  padding: 20px 20px 30px 20px;
  background-color: var(--clr-off-grey);
  text-align: left;
}

@media only screen and (max-width: 575px) {
  .explore-specialise-teams .tab-content .card-outer .card-main {
    padding: 15px;
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-images {
  height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1499px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images {
    height: 220px;
  }
}

@media only screen and (max-width: 767px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images {
    height: 200px;
  }
}

@media only screen and (max-width: 575px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images {
    height: 220px;
  }
}

@media only screen and (max-width: 480px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images {
    height: 200px;
  }
}

@media only screen and (max-width: 375px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images {
    height: 180px;
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-images img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1499px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images img {
    height: 220px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 767px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images img {
    height: 200px;
  }
}

@media only screen and (max-width: 575px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images img {
    height: 220px;
  }
}

@media only screen and (max-width: 480px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images img {
    height: 200px;
  }
}

@media only screen and (max-width: 375px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-images img {
    height: 180px;
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content {
  padding: 20px 10px 0 10px;
  height: calc(100% - 250px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 1499px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content {
    height: calc(100% - 220px);
    padding: 20px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content {
    height: calc(100% - 200px);
  }
}

@media only screen and (max-width: 575px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content {
    height: calc(100% - 220px);
  }
}

@media only screen and (max-width: 480px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content {
    height: calc(100% - 200px);
  }
}

@media only screen and (max-width: 375px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content {
    height: calc(100% - 180px);
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .serviceteam-list {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
  gap: 8px;
  width: calc(100% + 30px);
  scrollbar-width: thin;
  scrollbar-color: rgba(33, 37, 41, 0.5) var(--clr-dark-grey);
}

@media only screen and (max-width: 1499px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content .serviceteam-list {
    width: calc(100% + 20px);
  }
}

@media only screen and (max-width: 767px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content .serviceteam-list {
    display: none;
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .serviceteam-list li {
  padding: 9px 14px;
  background-color: var(--clr-dark-grey);
  border-radius: 30px;
  margin-bottom: 6px;
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .team-info {
  margin: 20px 0 30px;
  text-align: left;
}

@media only screen and (max-width: 1499px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content .team-info {
    margin: 15px 0;
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .team-info .teamcompo-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
}

@media only screen and (max-width: 1499px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content .team-info .teamcompo-list li {
    align-items: start;
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .team-info .teamcompo-list li .small-text {
  padding-left: 5px;
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .team-title-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part {
  gap: 10px;
}

@media only screen and (max-width: 375px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part {
    display: block !important;
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part .team-icon-list {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part .team-icon-list {
    display: none;
  }
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part .team-icon-list li {
  position: relative;
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part .team-icon-list li .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  border: 2px solid var(--clr-off-grey);
  box-sizing: border-box;
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams
    .tab-content
    .card-outer
    .card-main
    .card-content
    .bottom-part
    .team-icon-list
    li
    .icon-box {
    width: 44px;
    height: 44px;
  }
}

.explore-specialise-teams
  .tab-content
  .card-outer
  .card-main
  .card-content
  .bottom-part
  .team-icon-list
  li
  .icon-box
  img {
  width: 50px;
  aspect-ratio: auto 50/50;
  height: auto;
}

.explore-specialise-teams
  .tab-content
  .card-outer
  .card-main
  .card-content
  .bottom-part
  .team-icon-list
  li:nth-child(2) {
  margin-left: -18px;
  z-index: 1;
}

.explore-specialise-teams
  .tab-content
  .card-outer
  .card-main
  .card-content
  .bottom-part
  .team-icon-list
  li:nth-child(3) {
  margin-left: -18px;
  z-index: 2;
}

.explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part .details-btn {
  background-color: transparent;
}

.explore-specialise-teams.main .tab-content .card-outer .card-main .card-content .bottom-part .details-btn {
  background-color: var(--clr-black);
}

@media only screen and (min-width: 768px) and (max-width: 1499px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part .details-btn {
    padding: 8px 18px;
    gap: 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .explore-specialise-teams .tab-content .card-outer .card-main .card-content .bottom-part .details-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1499px) {
  .explore-specialise-teams
    .tab-content
    .card-outer
    .card-main
    .card-content
    .bottom-part
    .details-btn
    .material-symbols-rounded {
    font-size: 20px;
  }
}

.explore-specialise-teams .swipe-btn-outer {
  display: flex;
  justify-content: end;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  margin-top: 30px;
}

.explore-specialise-teams .swipe-btn-outer .com-btn {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-black);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  top: 10px;
  left: auto;
  right: auto;
}
.explore-specialise-teams .swipe-btn-outer .com-btn:hover,
.explore-specialise-teams .swipe-btn-outer .com-btn:focus {
  outline: none;
}

@media screen and (max-width: 767px) {
  .explore-specialise-teams .swipe-btn-outer .com-btn {
    height: 48px;
    width: 48px;
  }

  .explore-specialise-teams .swipe-btn-outer {
    margin-top: 20px;
  }
}

.explore-specialise-teams .swipe-btn-outer .com-btn span {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-black);
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams .swipe-btn-outer .com-btn span {
    transition: none;
  }
}

.mi-bg-dark .explore-specialise-teams .swipe-btn-outer .com-btn .icon {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-black);
}
@media only screen and (max-width: 1199px) {
  .mi-bg-dark .explore-specialise-teams .swipe-btn-outer .com-btn .icon {
    transition: none;
  }
}
.mi-bg-dark .explore-specialise-teams .swipe-btn-outer .com-btn .icon:before {
  background-color: var(--clr-white);
}

.explore-specialise-teams .swipe-btn-outer .com-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-black);
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams .swipe-btn-outer .com-btn:before {
    transition: none;
  }
}

.explore-specialise-teams .swipe-btn-outer .com-btn:after {
  display: none;
}

.explore-specialise-teams .swipe-btn-outer .com-btn:hover span {
  color: var(--clr-white);
  position: relative;
}

.explore-specialise-teams .swipe-btn-outer .com-btn:hover .icon:before {
  background-color: #192020;
  position: relative;
}

.explore-specialise-teams .swipe-btn-outer .com-btn:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.explore-specialise-teams .swipe-btn-outer .com-btn .icon {
  position: relative;
  z-index: 3;
}

.explore-specialise-teams .swipe-btn-outer .com-btn:hover .icon::before {
  background-color: var(--clr-white);
}

/*--- section explore teams End ---*/
.home-page-work .work__bottom {
  display: none;
}

.home-page-work .work__list {
  display: none;
}

.work__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .work__top {
    display: block;
    margin-bottom: 20px;
  }

  .work__bottom {
    padding-top: 20px;
  }
}

.work__top .btn-black {
  clip-path: none;
}

@media screen and (max-width: 1599px) {
  .work__top .btn-black {
    flex: 0 0 210px;
  }
}

.work__top .work-desk-btn {
  flex: 0 0 auto;
}

.work__item {
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .work__item {
    border-radius: 16px;
  }
}

.work__item p {
  margin-bottom: 0;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .work__item p {
    line-height: 1.5;
  }
}

.work__item-title {
  color: #000;
  margin-bottom: 20px;
}

.work__item-larg-title {
  margin: 0;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .work__item-larg-title {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  .work__item-text {
    font-size: 14px;
  }
}

.work__item img {
  border-radius: 24px;
  height: auto;
  width: 100%;
  position: relative;
  z-index: 3;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

@media screen and (max-width: 1199px) {
  .work__item img {
    border-radius: 16px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.work__item--no-link {
  border: 1px solid #3b4040;
  background: #252b2b;
}

@media screen and (max-width: 1199px) {
  .work__item--no-link {
    padding: 20px;
  }
}

@media screen and (max-width: 991px) {
  .work__item--no-link {
    min-height: 1px;
  }
}

.work__item.bg-purple {
  background-color: gold;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .work__item.bg-purple {
    grid-column: span 2;
  }
}

.work__item:hover img {
  transform: scale(1.04);
}

.work__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media screen and (max-width: 1199px) {
  .work__list {
    grid-gap: 24px;
  }
}

@media screen and (max-width: 767px) {
  .work__list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .work__list {
    grid-gap: 16px;
    margin-top: 24px !important;
  }
}

.work__list-item {
  padding: 30px;
  color: var(--clr-black);
}

@media screen and (max-width: 991px) {
  .work__list-item {
    padding: 16px;
  }
}

.work__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

@media screen and (max-width: 1199px) {
  .work__inner {
    grid-gap: 24px;
  }
}

@media screen and (max-width: 991px) {
  .work__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .work__inner {
    grid-gap: 20px;
  }
}

.work__inner.has-links {
  display: grid;
  margin-bottom: 30px;
}

@media screen and (max-width: 1199px) {
  .work__inner.has-links {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .work__inner.has-links {
    display: flex;
    position: relative;
    overflow: auto;
    padding: 0 30px 8px;
  }
}

@media screen and (max-width: 991px) {
  .work__inner.has-links {
    width: calc(100vw - 10px);
    left: -30px;
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .work__inner.has-links {
    padding: 0 20px 12px 0;
    left: 0;
  }
}

@media screen and (max-width: 1023px) {
  .work__inner.has-links .work__item {
    flex: 0 0 48%;
  }
}

@media screen and (max-width: 991px) {
  .work__inner.has-links .work__item {
    min-height: 1px;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .work__inner.has-links .work__item {
    flex: 0 0 95%;
  }
}

.testimonial {
  background-color: #f0f0f0;
  position: relative;
}

.testimonial__item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media screen and (max-width: 1599px) {
  .testimonial__item {
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 991px) {
  .testimonial__item {
    grid-template-columns: 1fr;
  }
}

.testimonial__item-title {
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial__item-text {
  font-weight: 300;
}

@media screen and (max-width: 991px) {
  .testimonial__item-text {
    margin-bottom: 0;
  }
}

.testimonial__item-img {
  position: relative;
  height: 0;
  padding-bottom: 65%;
  overflow: hidden;
  border-radius: 24px;
}

.testimonial__item-img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}

.testimonial__auth-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-radius: 0px 0px 24px 24px;
  background: rgba(25, 32, 32, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
}

@media screen and (max-width: 991px) {
  .testimonial__auth-wrapper {
    padding: 15px 20px;
    border-radius: 0 0 14px 14px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial__auth-wrapper {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial__auth-wrapper .testimonial__auth {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial__auth-wrapper .testimonial__auth span {
    margin-bottom: 0 !important;
  }
}

.testimonial__play {
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  position: relative;
}

@media screen and (max-width: 991px) {
  .testimonial__play {
    height: 48px;
    width: 48px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial__play {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .testimonial__play.mobile {
    display: flex !important;
    z-index: 2;
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: rgba(25, 32, 32, 0.5);
  }
}

.testimonial__play::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.testimonial__play .icon {
  position: relative;
  z-index: 4;
  transition: color 0.3s;
  width: 24px;
  height: 24px;
}

.testimonial__play .icon:before,
.testimonial__play .icon:before {
  background-color: var(--clr-white);
}
.testimonial__play:hover .icon:before,
.testimonial__play:focus .icon:before {
  background-color: #192020;
}
.testimonial__play:hover::before,
.testimonial__play:focus::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.testimonial__auth-country {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media screen and (max-width: 991px) {
  .testimonial__auth-country {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial__auth-country {
    font-size: 0;
    gap: 0;
  }
}

.testimonial__nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  grid-gap: 10px;
  z-index: 10;
}

@media screen and (max-width: 1599px) {
  .testimonial__nav {
    bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .testimonial__nav {
    left: initial;
    right: 0;
  }
}

.testimonial-button-prev,
.testimonial-button-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #192020;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  transition: box-shadow 0.3s ease;
}

@media only screen and (max-width: 1365px) {
  .testimonial-button-prev,
  .testimonial-button-next {
    height: 48px;
    width: 48px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-button-prev,
  .testimonial-button-next {
    transition: none;
  }
}

.testimonial-button-prev::before,
.testimonial-button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #192020;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .testimonial-button-prev::before,
  .testimonial-button-next::before {
    transition: none;
  }
}

.testimonial-button-prev span,
.testimonial-button-next span {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
}

@media only screen and (max-width: 1199px) {
  .testimonial-button-prev span,
  .testimonial-button-next span {
    transition: none;
  }
}

.testimonial-button-prev .icon,
.testimonial-button-next .icon {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 1199px) {
  .testimonial-button-prev .icon,
  .testimonial-button-next .icon {
    transition: none;
  }
}

.testimonial-button-prev:hover,
.testimonial-button-next:hover {
  box-shadow: inset 0 0 0 1px #192020;
}

.testimonial-button-prev:hover,
.testimonial-button-prev:focus,
.testimonial-button-next:hover,
.testimonial-button-next:focus {
  outline: none;
}

.testimonial-button-prev:hover::before,
.testimonial-button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.testimonial-button-prev:hover span,
.testimonial-button-next:hover span {
  color: #fff;
}

.testimonial-button-prev:hover .icon:before,
.testimonial-button-next:hover .icon:before {
  background-color: var(--clr-white);
}

.testimonial-list {
  background-color: #f0f0f0;
}

.testimonial-list__item {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  .testimonial-list__item {
    padding: 20px;
  }
}

@media screen and (max-width: 991px) {
  .testimonial-list__item .rounded-circle {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }
}

.testimonial-list__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media screen and (max-width: 991px) {
  .testimonial-list__inner {
    grid-gap: 20px;
    grid-template-columns: 1fr;
  }
}

.testimonial-list__play {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 56px;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  border-radius: 30px;
  border: 1px solid #192020;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

@media screen and (max-width: 1365px) {
  .testimonial-list__play {
    height: 48px;
    width: 48px;
  }
}

.testimonial-list__play span {
  position: relative;
  z-index: 1;
}

.testimonial-list__play .icon {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.testimonial-list__play::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.testimonial-list__play:hover,
.testimonial-list__play:focus {
  color: #fff;
}

.testimonial-list__play:hover .icon:before,
.testimonial-list__play:focus .icon:before {
  background-color: var(--clr-white);
}

.testimonial-list__play:hover::before,
.testimonial-list__play:focus::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

/*sec-testimonial-listing css starts here*/

.sec-testimonial-listing .sec-testimonial .testimonial {
  background-color: var(--clr-white);
  padding-top: 40px;
}

.sec-testimonial-list .rounded-circle {
  width: 80px;
  aspect-ratio: auto 80/80;
}

@media only screen and (max-width: 991px) {
  .sec-testimonial-list .rounded-circle {
    width: auto;
  }
}

.sec-testimonial-list .flag-icon {
  width: 26px;
  aspect-ratio: auto 26/26;
  margin-top: -1px;
}

@media only screen and (max-width: 991px) {
  .sec-testimonial-list .flag-icon {
    width: 22px;
    aspect-ratio: auto 22/22;
  }
}

/*sec-testimonial-listing css ends here*/

.we-serve {
  color: var(--clr-white);
}

.we-serve--border .we-serve--light .we-serve__item-icon {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-black);
}

.we-serve__text,
.we-serve__title {
  color: inherit;
}

.we-serve__text {
  margin-bottom: 40px;
}
.we-serve__text a {
  color: var(--clr-blue);
  text-decoration: underline;
}

.we-serve .swiper-slide {
  width: 500px;
}

@media only screen and (max-width: 1599px) {
  .we-serve .swiper-slide {
    width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .we-serve .swiper-slide {
    width: 90%;
  }
}

.we-serve__slider {
  padding: 0 60px;
}

@media only screen and (max-width: 1365px) {
  .we-serve__slider {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .we-serve__slider {
    padding: 0 15px;
  }
}

.we-serve__slider .swiper-slide {
  height: auto;
}

.we-serve__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
  margin-top: 30px;
  margin-right: 0.75rem;
}

@media screen and (max-width: 767px) {
  .we-serve__nav {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 1500px) {
  .we-serve__nav-cta,
  .we-serve__nav {
    max-width: 1446px;
  }
}

.we-serve__nav-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
  margin-top: 30px;
  margin-right: 0.75rem;
}

@media screen and (max-width: 767px) {
  .we-serve__nav-cta {
    margin-top: 20px;
  }
}

.we-serve__nav-cta > div {
  display: flex;
  gap: 10px;
}

.we-serve__slider-button-prev,
.we-serve__slider-button-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media only screen and (max-width: 1365px) {
  .we-serve__slider-button-prev,
  .we-serve__slider-button-next {
    height: 48px;
    width: 48px;
  }
}

.we-serve .we-serve__slider-button-prev .icon::before,
.we-serve .we-serve__slider-button-next .icon::before,
.we-serve.bg-mi-light .we-serve__slider-button-prev .icon::before,
.we-serve.bg-mi-light .we-serve__slider-button-next .icon::before {
  background-color: var(--clr-black);
}

.we-serve .we-serve__slider-button-prev:hover .icon::before,
.we-serve .we-serve__slider-button-next:hover .icon::before,
.we-serve.bg-mi-light .we-serve__slider-button-prev:hover .icon::before,
.we-serve.bg-mi-light .we-serve__slider-button-next:hover .icon::before {
  background-color: var(--clr-white);
}

.sec-we-serve.bg-mi-dark .we-serve__slider-button-prev .icon::before,
.sec-we-serve.bg-mi-dark .we-serve__slider-button-next .icon::before,
.we-serve.we-serve-btn .we-serve__slider-button-prev .icon::before,
.we-serve.we-serve-btn .we-serve__slider-button-next .icon::before,
.we-serve.bg-mi-dark .we-serve__slider-button-prev .icon::before,
.we-serve.bg-mi-dark .we-serve__slider-button-next .icon::before {
  background-color: var(--clr-white);
}

.sec-we-serve.bg-mi-dark .we-serve__slider-button-prev:hover .icon::before,
.sec-we-serve.bg-mi-dark .we-serve__slider-button-next:hover .icon::before,
.we-serve.we-serve-btn .we-serve__slider-button-prev:hover .icon::before,
.we-serve.we-serve-btn .we-serve__slider-button-next:hover .icon::before,
.we-serve.bg-mi-dark .we-serve__slider-button-prev:hover .icon::before,
.we-serve.bg-mi-dark .we-serve__slider-button-next:hover .icon::before {
  background-color: var(--clr-black);
}

.we-serve__slider-button-prev::before,
.we-serve__slider-button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .we-serve__slider-button-prev::before,
  .we-serve__slider-button-next::before {
    transition: none;
  }
}

.we-serve__slider-button-prev span,
.we-serve__slider-button-next span {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
}

@media only screen and (max-width: 1199px) {
  .we-serve__slider-button-prev span,
  .we-serve__slider-button-next span {
    transition: none;
  }
}

.we-serve__slider-button-prev:hover,
.we-serve__slider-button-next:hover {
  box-shadow: inset 0 0 0 1px #fff;
}

.we-serve__slider-button-prev:hover,
.we-serve__slider-button-prev:focus,
.we-serve__slider-button-next:hover,
.we-serve__slider-button-next:focus {
  outline: none;
}

.we-serve__slider-button-prev:hover::before,
.we-serve__slider-button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.we-serve__slider-button-prev:hover span,
.we-serve__slider-button-next:hover span {
  color: #252b2b;
}

.we-serve__item {
  background-color: #252b2b;
  padding: 30px;
  height: 100%;
}

@media only screen and (max-width: 1599px) {
  .we-serve__item {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .we-serve__item {
    padding: 14px;
  }
}

/*industries with black bg slider css starts here*/

.we-serve__inner.bg-black-slider .we-serve__item {
  display: flex;
  flex-direction: column;
}

.we-serve__inner.bg-black-slider .we-serve__item .ongoing-bottom {
  margin-top: auto;
}

.we-serve__inner.bg-black-slider .we-serve__item .ongoing-left-icon .icon:before {
  background-color: var(--clr-black);
}

/*industries with black bg slider ends starts here*/

/*industry we serve offwhite css starts here*/

.sec-we-serve.offwhite-industry-serve .we-serve__title {
  color: var(--clr-black);
}

.sec-we-serve.offwhite-industry-serve .we-serve__item {
  background-color: var(--clr-off-white);
}

.sec-we-serve.offwhite-industry-serve .we-serve__item .we-serve__item-icon {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-black);
}

.sec-we-serve.offwhite-industry-serve .we-serve__item .we-serve__item-icon .icon {
  width: 24px;
  height: 24px;
}

.sec-we-serve.offwhite-industry-serve .we-serve__item a:hover {
  color: var(--clr-black);
}

.sec-we-serve.offwhite-industry-serve .we-serve__item .icon::before {
  background-color: var(--clr-black);
}

.sec-we-serve.offwhite-industry-serve .we-serve__item ul li .icon {
  width: 24px;
  height: 24px;
}

.sec-we-serve.offwhite-industry-serve .we-serve__slider-button-prev,
.sec-we-serve.offwhite-industry-serve .we-serve__slider-button-next {
  border: 1px solid var(--clr-black);
}

.sec-we-serve.offwhite-industry-serve .we-serve__inner .we-serve__nav .com-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-black);
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .sec-we-serve.offwhite-industry-serve .we-serve__inner .we-serve__nav .com-btn:before {
    transition: none;
  }
}

.sec-we-serve.offwhite-industry-serve .we-serve__inner .we-serve__nav .com-btn span {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-black);
}
@media only screen and (max-width: 1199px) {
  .sec-we-serve.offwhite-industry-serve .we-serve__inner .we-serve__nav .com-btn span {
    transition: none;
  }
}

.sec-we-serve.offwhite-industry-serve .we-serve__inner .we-serve__nav .com-btn:hover span {
  color: var(--clr-white);
  position: relative;
}

.sec-we-serve.offwhite-industry-serve .we-serve__inner .we-serve__nav .com-btn:hover:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

/*industry we serve offwhite css ends here*/

/*industry we serve white css start here*/
.sec-we-serve.sec-we-serve--white .we-serve__item {
  background-color: var(--clr-off-grey);
  color: var(--clr-black);
  border: 1px solid var(--clr-dark-grey);
}

.sec-we-serve.sec-we-serve--white .we-serve__item .we-serve__item-icon {
  background-color: var(--clr-dark-grey);
}
.sec-we-serve.sec-we-serve--white .we-serve__item .we-serve__item-icon .icon:before {
  background-color: #192020;
}

.withblack-icons .sec-we-serve .we-serve__item .we-serve__item-icon .icon:before {
  background-color: #192020;
}

.sec-we-serve.sec-we-serve--white .we-serve__slider-button-prev,
.sec-we-serve.sec-we-serve--white .we-serve__slider-button-next {
  border-color: var(--clr-black);
  color: var(--clr-black);
}

.sec-we-serve.sec-we-serve--white .we-serve__slider-button-prev::before,
.sec-we-serve.sec-we-serve--white .we-serve__slider-button-next::before {
  background-color: var(--clr-black);
}

.sec-we-serve.sec-we-serve--white .we-serve__slider-button-prev:hover span,
.sec-we-serve.sec-we-serve--white .we-serve__slider-button-next:hover span {
  color: var(--clr-white);
}

/*industry we serve white css ends here*/

.we-serve__item .icon::before {
  background-color: var(--clr-white);
}

.we-serve.bg-mi-light .we-serve__item .icon::before {
  background-color: var(--clr-black);
}

.we-serve__item .icon p a {
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  .we-serve__item-text {
    margin-bottom: 0;
  }
}

.we-serve__item-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3b4040;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1599px) {
  .we-serve__item-icon {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .we-serve__item-icon {
    height: 48px;
    width: 48px;
  }
}

.we-serve__item-icon .icon {
  width: 24px;
  height: 24px;
}

.we-serve__item .ongoing-left-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1199px) {
  .we-serve__item .ongoing-left-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .we-serve__item .ongoing-left-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 25px;
  }
}

.we-serve__item .ongoing-right-bg {
  float: right;
  background: #192020;
  border-radius: 8px;
  padding: 9px 13px;
  text-align: center;
}

.c-light-blue {
  color: #29ffff;
}

.c-light-orange {
  color: #ffd8c0;
}

.c-light-green {
  color: #b5f1cc;
}

.c-light-purple {
  color: #d0bfff;
}

.we-serve__item .ongoing-bottom {
  width: 100%;
}

.we-serve__item .ongoing-bottom ul {
  margin: 0;
  padding: 0;
}

.we-serve__item .ongoing-bottom ul li {
  list-style: none;
  display: inline-block;
  background: #192020;
  border-radius: 30px;
  padding: 10px 13px;
  text-align: center;
  margin: 15px 8px 0 0;
}

.powerful-item .increase-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  border: solid #192020 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.we-serve__item p a {
  color: var(--clr-blue);
  text-decoration: underline;
}

.we-serve__item .link {
  text-decoration: underline;
  transition: all 0.3s ease;
}

.we-serve__item .link:focus,
.we-serve__item .link:hover {
  opacity: 0.5;
}

.we-serve__item ul {
  font-weight: 300;
}

@media only screen and (max-width: 991px) {
  .we-serve__item ul {
    padding-bottom: 8px;
  }
}

.we-serve__item ul li {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media only screen and (max-width: 767px) {
  .we-serve__item ul li {
    gap: 10px;
    align-items: flex-start;
  }
}

.we-serve__item ul li .icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.we-serve__item ul li + li {
  margin-top: 12px;
}

@media only screen and (max-width: 991px) {
  .we-serve__item ul li + li {
    margin-top: 10px;
  }
}

.we-serve.bg-mi-light {
  background-color: #fff;
}

.we-serve.bg-mi-light .service-slider__top h2,
.we-serve.bg-mi-light .service-slider__top p {
  color: var(--clr-black);
}

.we-serve.bg-mi-light .we-serve__item {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
}

.we-serve.bg-mi-light .we-serve__item .font-26,
.we-serve.bg-mi-light .we-serve__item h3,
.we-serve.bg-mi-light .we-serve__item p,
.we-serve.bg-mi-light .we-serve__item ul,
.we-serve.bg-mi-light .we-serve__item li {
  color: var(--clr-black);
}

.we-serve.bg-mi-light .we-serve__item .we-serve__item-icon {
  background-color: #fff;
  border: 1px solid var(--clr-black);
}

.we-serve.bg-mi-light .we-serve__item .we-serve__item-icon .material-symbols-rounded {
  color: var(--clr-black);
}

.we-serve.bg-mi-light .we-serve__slider-button-prev::before,
.we-serve.bg-mi-light .we-serve__slider-button-next::before {
  background-color: var(--clr-black);
}

.we-serve.bg-mi-light .we-serve__slider-button-prev,
.we-serve.bg-mi-light .we-serve__slider-button-next {
  border: 1px solid var(--clr-black);
}

.we-serve.bg-mi-light .we-serve__slider-button-prev:hover span,
.we-serve.bg-mi-light .we-serve__slider-button-next:hover span {
  color: var(--clr-white);
}

.we-serve.bg-mi-light .we-serve__slider-button-prev span,
.we-serve.bg-mi-light .we-serve__slider-button-next span {
  color: var(--clr-black);
}

.we-serve--light {
  background-color: #f0f0f0;
  color: #252b2b;
}

.we-serve--light .we-serve__item {
  background-color: #fff;
}

.we-serve--light .we-serve__slider-button-prev,
.we-serve--light .we-serve__slider-button-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252b2b;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media only screen and (max-width: 1365px) {
  .we-serve--light .we-serve__slider-button-prev,
  .we-serve--light .we-serve__slider-button-next {
    height: 48px;
    width: 48px;
  }
}

.we-serve--light .we-serve__slider-button-prev::before,
.we-serve--light .we-serve__slider-button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #252b2b;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.we-serve--light .we-serve__slider-button-prev span,
.we-serve--light .we-serve__slider-button-next span {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
}

.we-serve--light .we-serve__slider-button-prev:hover,
.we-serve--light .we-serve__slider-button-next:hover {
  box-shadow: inset 0 0 0 1px #fff;
}

.we-serve--light .we-serve__slider-button-prev:hover::before,
.we-serve--light .we-serve__slider-button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.we-serve--light .we-serve__slider-button-prev:hover span,
.we-serve--light .we-serve__slider-button-next:hover span {
  color: #ffffff;
}

.we-serve--light .we-serve__item-icon {
  background-color: #f0f0f0;
}

.we-serve--light .we-serve__item-icon .icon::before {
  background-color: #252b2b;
}

.we-serve.we-serve--white {
  background-color: #fff;
  color: var(--clr-black);
}

.sec-our-industries .we-serve.we-serve--white .indus-btn-prev .icon::before,
.sec-our-industries .we-serve.we-serve--white .indus-btn-next .icon::before {
  background-color: var(--clr-black);
}

.sec-our-industries .we-serve.we-serve--white .indus-btn-prev:hover .icon::before,
.sec-our-industries .we-serve.we-serve--white .indus-btn-next:hover .icon::before {
  background-color: var(--clr-white);
}

.sec-our-industries .we-serve.we-serve--white .ind-item {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
}

.sec-our-industries .we-serve.we-serve--white .ind-item .ind-icon {
  background-color: #fff;
  border: 1px solid #192020;
}
.sec-our-industries .we-serve.we-serve--white .ind-item .ind-icon .icon:before {
  background-color: #192020;
}
.detail.bg-mi-dark .detail__block {
  background-color: #252b2b;
  border: 1px solid #3b4040;
}

.detail.bg-mi-dark .detail__block .icon::before,
.detail.bg-mi-dark .detail__block .link-black .icon::before {
  background-color: #fff;
}

.detail.bg-mi-dark .detail__block .link-black {
  color: #fff;
}

.detail__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

@media screen and (max-width: 1599px) {
  .detail__inner {
    grid-gap: 20px;
  }
}

@media screen and (max-width: 991px) {
  .detail__inner {
    grid-template-columns: 1fr;
  }
}

.detail__inner--three-col {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1199px) {
  .detail__inner--three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .detail__inner--three-col {
    grid-template-columns: 1fr;
  }
}

.detail__inner--four-col {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1199px) {
  .detail__inner--four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 991px) {
  .detail__inner--four-col {
    grid-template-columns: 1fr;
  }
}

.detail__block {
  padding: 30px;
}

@media screen and (max-width: 1599px) {
  .detail__block {
    padding: 20px;
  }
}
@media screen and (max-width: 575px) {
  .detail__block {
    padding: 20px 15px;
  }
}

.detail__block p a {
  color: #ed184f;
  text-decoration: underline;
}

.detail__block p a:hover {
  opacity: 0.9;
}
.detail__block p a:hover,
.detail__block p a:focus {
  outline: none;
}

.detail__list .link-dashed .icon {
  width: 24px;
  height: 24px;
}

/*detail__block with grey lists css starts here*/

.detail__block.bggreylists .detail__list .link-dashed {
  background-color: var(--clr-dark-grey);
  border: none;
}

.detail__block.bggreylists .detail__list .link-dashed:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

/*detail__block with grey lists css ends here*/

.detail__block-icon {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #192020;
  margin-bottom: 20px;
}

@media screen and (max-width: 1023px) {
  .detail__block-icon {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .detail__block-icon {
    margin-bottom: 10px;
    width: 48px;
    height: 48px;
  }
}

.detail__block-icon .icon {
  width: 24px;
  height: 24px;
}
.app-services-grey .detail__block-icon {
  background-color: var(--clr-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.detail__block--span-2 {
  grid-column: span 2;
}

@media screen and (max-width: 1023px) {
  .detail__block--span-2 {
    grid-column: span 1;
  }
}

.detail__list {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .detail__list {
    margin-top: 10px;
  }
}

.detail__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 40px;
}

@media screen and (max-width: 1599px) {
  .detail__bottom {
    grid-gap: 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 991px) {
  .detail__bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .detail__bottom {
    grid-template-columns: 1fr;
  }
}

.detail__bottom-item {
  background-color: #fff;
  padding: 30px;
}

@media screen and (max-width: 1599px) {
  .detail__bottom-item {
    padding: 20px;
  }
}

.detail__expand {
  display: none;
}

.detail-inner-tabs .detail-tab-inner {
  text-align: center;
}
.detail-inner-tabs .detail-tab-inner .details-tabs {
  display: inline-flex;
  padding: 5px;
  border-radius: 30px;
  background-color: var(--clr-white);
}
@media only screen and (max-width: 480px) {
  .detail-inner-tabs .detail-tab-inner .details-tabs {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    border-radius: 10px 10px 0 0;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 480px) {
  .detail-inner-tabs .detail-tab-inner .details-tabs::-webkit-scrollbar {
    width: 0;
    display: none;
  }
}
.detail-inner-tabs .detail-tab-inner .details-tabs .nav-item .nav-link {
  width: 100%;
  color: #0f1010;
  opacity: 0.7;
  position: relative;
  padding: 0.5rem 1.36rem;
  border-radius: 30px;
  border: 1px solid transparent;
}
@media only screen and (max-width: 480px) {
  .detail-inner-tabs .detail-tab-inner .details-tabs .nav-item .nav-link {
    padding: 0.5rem 1.5rem;
    border-radius: 10px 10px 0 0;
  }
}
.detail-inner-tabs .detail-tab-inner .details-tabs .nav-item .nav-link.active {
  opacity: 1;
  color: var(--clr-white);
  background-color: var(--clr-black);
}

.detail-inner-tabs .detail-tab-inner .tab-content {
  margin-top: 50px;
}

@media only screen and (max-width: 991px) {
  .detail-inner-tabs .detail-tab-inner .tab-content {
    margin-top: 30px;
  }
}

.detail-inner-tabs .detail-tab-inner .detail-tab-outer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  text-align: left;
}
@media screen and (max-width: 1599px) {
  .detail-inner-tabs .detail-tab-inner .detail-tab-outer {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .detail-inner-tabs .detail-tab-inner .detail-tab-outer {
    grid-template-columns: 1fr;
  }
}

.detail-inner-tabs .detail-tab-inner .detail-tab-outer .item-wrapper {
  padding: 30px;
}

@media screen and (max-width: 1599px) {
  .detail-inner-tabs .detail-tab-inner .detail-tab-outer .item-wrapper {
    padding: 20px;
  }
}
@media screen and (max-width: 575px) {
  .detail-inner-tabs .detail-tab-inner .detail-tab-outer .item-wrapper {
    padding: 20px 15px;
  }
}

.service-slider {
  color: #fff;
}

.service-slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .service-slider__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }
}

.service-slider__top .btn-black,
.service-slider__top .service-desk-btn {
  flex: 0 0 auto;
}

.service-slider .swiper {
  overflow: visible !important;
}

.service-slider .swiper-slide {
  width: 454px;
}

@media screen and (max-width: 1599px) {
  .service-slider .swiper-slide {
    width: 380px;
  }
}

@media screen and (max-width: 1023px) {
  .service-slider .swiper-slide {
    width: 330px;
  }
}

.service-slider__text {
  text-transform: capitalize;
  display: inline-block;
  width: 100%;
  background: #131515;
  padding: 15px 20px;
}

@media screen and (max-width: 1599px) {
  .service-slider__text {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .service-slider__text {
    font-size: 16px;
    padding: 8px 14px;
  }
}

.service-slider__item {
  position: relative;
  display: block;
}

.service-slider__item-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-slider__item:hover .service-slider__item-img {
  transform: scale(1.04);
}

.service-slider__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
  margin-top: 30px;
  margin-right: 0.75rem;
}

@media screen and (max-width: 767px) {
  .service-slider__nav {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1500px) {
  .service-slider__nav {
    max-width: 1446px;
  }
}

.service-slider__button-prev,
.service-slider__button-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media only screen and (max-width: 1365px) {
  .service-slider__button-prev,
  .service-slider__button-next {
    height: 48px;
    width: 48px;
  }
}

.service-slider__button-prev::before,
.service-slider__button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .service-slider__button-prev::before,
  .service-slider__button-next::before {
    transition: none;
  }
}

.service-slider__button-prev .icon,
.service-slider__button-next .icon {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
  width: 24px;
  line-height: 24px;
}
.service-slider__button-prev .icon:before,
.service-slider__button-next .icon:before {
  background-color: var(--clr-white);
}

.service-slider__button-prev:hover,
.service-slider__button-next:hover {
  box-shadow: inset 0 0 0 1px #fff;
}

.service-slider__button-prev:hover::before,
.service-slider__button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.service-slider__button-prev:hover .icon:before,
.service-slider__button-next:hover .icon:before {
  background-color: #252b2b;
}

.service-slider__button-prev:focus,
.service-slider__button-next:focus {
  outline: none;
}

@media screen and (max-width: 767px) {
  .service-slider .service-mob-btn {
    margin-top: 20px;
  }
}

.sec-service-slider.us-service-slider .service-slider {
  color: var(--clr-black);
}

.sec-service-slider.us-service-slider .service-slider-text {
  background-color: transparent;
  border: 1px solid #dadada;
  border-radius: 0 0 15px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px;
}

@media screen and (max-width: 1199px) {
  .sec-service-slider.us-service-slider .service-slider-text {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sec-service-slider.us-service-slider .service-slider-text {
    padding: 12px 15px;
  }
}

.sec-service-slider.us-service-slider .service-slider-text span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  width: 56px;
  font-size: 32px;
  border-radius: 100rem;
  border: 1px solid var(--clr-black);
}

@media screen and (max-width: 767px) {
  .sec-service-slider.us-service-slider .service-slider-text span {
    height: 38px;
    font-size: 20px;
    width: 38px;
  }
}

.sec-service-slider.us-service-slider .service-slider .swiper-slide {
  width: 485px;
}

@media screen and (max-width: 1199px) {
  .sec-service-slider.us-service-slider .service-slider .swiper-slide {
    width: 350px;
  }
}

@media screen and (max-width: 767px) {
  .sec-service-slider.us-service-slider .service-slider .swiper-slide {
    width: 280px;
  }
}

.sec-service-slider.us-service-slider .service-slider-item {
  border-radius: 15px;
}

.sec-service-slider.us-service-slider .service-slider__button-prev,
.sec-service-slider.us-service-slider .service-slider__button-next {
  border-color: var(--clr-black);
}

@media screen and (max-width: 767px) {
  .sec-service-slider.us-service-slider .service-slider__button-prev,
  .sec-service-slider.us-service-slider .service-slider__button-next {
    height: 38px;
    width: 38px;
  }
}

.sec-service-slider.us-service-slider .service-slider__button-prev .icon:before,
.sec-service-slider.us-service-slider .service-slider__button-next .icon:before {
  background-color: var(--clr-black);
}

.sec-service-slider.us-service-slider .service-slider__button-prev:hover .icon:before,
.sec-service-slider.us-service-slider .service-slider__button-next:hover .icon:before {
  background-color: var(--clr-white);
}

.sec-service-slider.us-service-slider .service-slider__button-prev::before,
.sec-service-slider.us-service-slider .service-slider__button-next::before {
  background-color: var(--clr-black);
}

.sec-service-slider.us-service-slider .service-slider-item > a {
  display: flex;
  flex-direction: column;
}

.sec-service-slider.us-service-slider .service-slider-item img {
  height: 416px;
  object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .sec-service-slider.us-service-slider .service-slider-item img {
    height: 300px;
  }
}

@media screen and (max-width: 1199px) {
  .sec-service-slider.us-service-slider .service-slider-item img {
    height: 240px;
  }
}

@media screen and (max-width: 767px) {
  .mi-modal {
    padding: 0 10px;
  }
}

.mi-modal .modal-content {
  padding: 40px 40px;
  border-radius: 24px;
  border: 0;
}

@media screen and (max-width: 1365px) {
  .mi-modal .modal-content {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .mi-modal .modal-content {
    padding: 25px;
  }
}

@media screen and (max-width: 767px) {
  .mi-modal .modal-content {
    padding: 20px;
    border-radius: 16px;
  }
}

.mi-modal .modal-dialog {
  max-width: 680px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .mi-modal .modal-dialog {
    margin: 0 auto;
  }
}

.mi-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .mi-modal-header {
    margin-bottom: 10px;
  }
}

.mi-modal-header .mi-btn-close {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 32px;
  width: 32px;
  flex: 0 0 32px;
}

.mi-modal-header .mi-btn-close .icon:before {
  background-color: var(--clr-white);
}

.mi-modal-header .mi-btn-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  height: 100%;
  width: 100%;
  border-radius: 10px;
  background-color: #192020;
  transition: all 0.3s ease;
}

.mi-modal-header .mi-btn-close span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.mi-modal-header .mi-btn-close:hover {
  color: #fff;
}

.mi-modal-header .mi-btn-close:hover span {
  transform: rotate(90deg);
}

.mi-modal-header .mi-btn-close:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.mi-modal .inner-content {
  background-color: transparent;
  border: 0;
}

.mi-modal .form-control {
  border-bottom: 1px solid #e6e6e6;
  background-color: #fff;
  color: rgba(25, 32, 32, 0.5);
}

.mi-modal .form-control::-moz-placeholder {
  color: rgba(25, 32, 32, 0.5);
}

.mi-modal .form-control:-ms-input-placeholder {
  color: rgba(25, 32, 32, 0.5);
}

.mi-modal .form-control::placeholder {
  color: rgba(25, 32, 32, 0.5);
}

.mi-modal .form-control:valid {
  color: #192020;
}

.mi-modal .contact-wrapper .inner-content {
  padding: 0;
}

@media only screen and (max-width: 1199px) {
  .mi-modal .contact-wrapper .inner-content {
    padding: 0;
  }
}

.modal-backdrop {
  background: rgba(25, 32, 32, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal-backdrop.show {
  opacity: 1;
}

.mi-modal .SumoSelect.open .search-txt {
  color: #192020;
}

/*all page casestudy section css */
.all-page-casestudy .our-work-main .our-work {
  background-color: var(--clr-light-grey-2);
}

.all-page-casestudy .our-work-main .our-work .app-features {
  background-color: var(--clr-white);
}

.popup-list textarea.form-control {
  height: auto;
  resize: vertical;
}

.recent__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  margin-top: 40px;
}

@media screen and (max-width: 1599px) {
  .recent__inner {
    grid-gap: 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .recent__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .recent__inner {
    grid-template-columns: 1fr;
  }
}

.recent__inner--large {
  margin-top: 0;
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .recent__inner--large {
    grid-template-columns: 1fr;
  }
}

.recent__item {
  transition: box-shadow 0.3s ease;
  position: relative;
}

.recent__item img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  transition: transform 0.3s ease;
}

.recent__item .btn-black {
  pointer-events: none;
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 5;
  height: 56px;
  width: 56px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1599px) {
  .recent__item .btn-black {
    left: 20px;
    bottom: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .recent__item .btn-black {
    width: 46px;
    height: 46px;
  }
}

.recent__item .btn-black .btn-text {
  width: 0;
  white-space: nowrap;
  overflow: hidden;
  margin-left: -10px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .recent__item .btn-black .btn-text {
    margin-left: -6px;
  }
}

.recent__item:hover {
  box-shadow:
    rgba(9, 30, 66, 0.25) 0px 4px 8px -2px,
    rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.recent__item:hover img {
  transform: scale(1.04);
}

.recent__item:hover .btn-black {
  width: 190px;
}

@media screen and (max-width: 767px) {
  .recent__item:hover .btn-black {
    width: 170px;
  }
}

.recent__item:hover .btn-black .btn-text {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: 0;
}

.our-portfolios-main .big-portfolio img.portfolio-picture {
  width: 700px;
  aspect-ratio: auto 700/500;
  height: auto;
}

.our-portfolios-main .small-portfolio img.portfolio-picture {
  width: 453px;
  aspect-ratio: auto 453/500;
  height: auto;
}

.our-portfolios-main .portfolio-parent {
  position: relative;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1023px) {
  .our-portfolios-main .portfolio-parent {
    margin-bottom: 30px;
  }
}

.our-portfolios-main .portfolio-parent a {
  display: block;
}

.our-portfolios-main .portfolio-parent a .btn-black {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  padding: 12px;
  transition: all 0.3s linear;
}

.our-portfolios-main .portfolio-parent a .btn-black .btn-text {
  overflow: hidden;
  width: 0;
  opacity: 0;
  white-space: nowrap;
  margin-right: -10px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .our-portfolios-main .portfolio-parent a .btn-black .btn-text {
    margin-right: -7px;
  }

  .our-portfolios-main .portfolio-parent a .btn-black {
    left: 14px;
    bottom: 14px;
    height: 48px;
    width: 48px;
  }
}

.our-portfolios-main .portfolio-parent:hover a .btn-black {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: 178px;
  padding-inline: 22px;
  transition: all 0.3s linear;
}

.our-portfolios-main .portfolio-parent:hover a .btn-black .btn-text {
  opacity: 1;
  width: 100%;
  margin: 0;
}

.benefit__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

@media screen and (max-width: 1199px) {
  .benefit__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .benefit__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}

.benefit__list--three-col {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 1199px) {
  .benefit__list--three-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .benefit__list--three-col {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}

.benefit__item {
  padding: 24px;
  color: #192020;
  min-height: 204px;
}

@media screen and (max-width: 991px) {
  .benefit__item {
    min-height: 1px;
  }
}

@media screen and (max-width: 767px) {
  .benefit__item {
    padding: 16px;
  }
}

.benefit__item p {
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .benefit__item p {
    font-size: 14px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 991px) {
  .benefit__item br {
    display: none;
  }
}

.benefit__icon {
  height: 56px;
  background-color: #192020;
  width: 56px;
  border-radius: 100%;
}

.benefit__icon .icon {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 767px) {
  .benefit__icon {
    width: 46px;
    height: 46px;
  }

  .benefit__icon span {
    font-size: 18px;
  }

  .benefit__icon .icon {
    width: 18px;
    height: 18px;
  }
}

.benefit__icon .icon::before {
  background-color: #ffffff;
}

.image-slider {
  position: relative;
  background-color: #f0f0f0;
}

.image-slider.bg-mi-dark {
  background-color: var(--clr-black);
}

.image-slider .swiper-slide {
  width: 1060px;
}

@media screen and (max-width: 1599px) {
  .image-slider .swiper-slide {
    width: 850px;
  }
}

@media screen and (max-width: 1199px) {
  .image-slider .swiper-slide {
    width: 600px;
  }
}

@media screen and (max-width: 1023px) {
  .image-slider .swiper-slide {
    width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .image-slider .swiper-slide {
    width: 95%;
  }
}

@media screen and (max-width: 1599px) {
  .image-slider .swiper-slide img {
    width: 100%;
    height: auto;
  }
}

.image-slider__container {
  padding: 0 60px !important;
}

@media screen and (max-width: 1023px) {
  .image-slider__container {
    padding: 0 15px !important;
  }
}

.image-slider__sldier {
  position: relative;
}

.image-slider__image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.image-slider__detail {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0px 0px 24px 24px;
  background: rgba(25, 32, 32, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 30px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1599px) {
  .image-slider__detail {
    padding: 24px;
  }
}

@media screen and (max-width: 767px) {
  .image-slider__detail {
    padding: 12px 14px 8px;
    border-radius: 0px 0px 16px 16px;
  }
}

@media screen and (max-width: 767px) {
  .image-slider__detail .font-24,
  .image-slider__detail .font-16 {
    font-size: 14px;
    line-height: 1;
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  .image-slider__title {
    font-size: 20px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .image-slider__title .car {
    display: inline-block;
    transform: translateY(-4px);
  }
}

.image-slider__nav {
  display: flex;
  justify-content: flex-end;
  grid-gap: 10px;
  z-index: 10;
}

@media screen and (max-width: 1599px) {
  .image-slider__nav {
    bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .image-slider__nav {
    left: initial;
    right: 0;
  }
}

.image-slider__button-prev,
.image-slider__button-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #192020;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  transition: box-shadow 0.3s ease;
}

@media only screen and (max-width: 1365px) {
  .image-slider__button-prev,
  .image-slider__button-next {
    height: 48px;
    width: 48px;
  }
}

@media only screen and (max-width: 1199px) {
  .image-slider__button-prev,
  .image-slider__button-next {
    transition: none;
  }
}

.image-slider__button-prev::before,
.image-slider__button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #192020;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .image-slider__button-prev::before,
  .image-slider__button-next::before {
    transition: none;
  }
}

.image-slider__button-prev .icon::before,
.image-slider__button-next .icon::before {
  background-color: var(--clr-white);
}

.image-slider__button-prev:hover .icon::before,
.image-slider__button-next:hover .icon::before {
  background-color: var(--clr-black);
}

.image-slider-gray .image-slider__button-prev .icon::before,
.image-slider-gray .image-slider__button-next .icon::before {
  background-color: var(--clr-black);
}

.image-slider-gray .image-slider__button-prev:hover .icon::before,
.image-slider-gray .image-slider__button-next:hover .icon::before {
  background-color: var(--clr-white);
}

.image-slider__button-prev span,
.image-slider__button-next span {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
}

.image-slider__button-prev:hover,
.image-slider__button-next:hover {
  box-shadow: inset 0 0 0 1px #192020;
}

.image-slider__button-prev:hover::before,
.image-slider__button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.image-slider__button-prev:hover span,
.image-slider__button-next:hover span {
  color: #fff;
}

.image-slider--dark .swiper-slide {
  width: 840px;
}

@media screen and (max-width: 1599px) {
  .image-slider--dark .swiper-slide {
    width: 850px;
  }
}

@media screen and (max-width: 1199px) {
  .image-slider--dark .swiper-slide {
    width: 600px;
  }
}

@media screen and (max-width: 1023px) {
  .image-slider--dark .swiper-slide {
    width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .image-slider--dark .swiper-slide {
    width: 95%;
  }
}

.image-slider--dark .image-slider__nav {
  display: flex;
  justify-content: flex-end;
  grid-gap: 10px;
  z-index: 10;
}

@media screen and (max-width: 1599px) {
  .image-slider--dark .image-slider__nav {
    bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .image-slider--dark .image-slider__nav {
    left: initial;
    right: 0;
  }
}

.image-slider--dark .image-slider__button-prev,
.image-slider--dark .image-slider__button-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  transition: box-shadow 0.3s ease;
}

@media only screen and (max-width: 1365px) {
  .image-slider--dark .image-slider__button-prev,
  .image-slider--dark .image-slider__button-next {
    height: 48px;
    width: 48px;
  }
}

.image-slider--dark .image-slider__button-prev::before,
.image-slider--dark .image-slider__button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .image-slider--dark .image-slider__button-prev::before,
  .image-slider--dark .image-slider__button-next::before {
    transition: none;
  }
}

.image-slider--dark .image-slider__button-prev span,
.image-slider--dark .image-slider__button-next span {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
}

@media only screen and (max-width: 1199px) {
  .image-slider--dark .image-slider__button-prev span,
  .image-slider--dark .image-slider__button-next span {
    transition: none;
  }
}

.image-slider--dark .image-slider__button-prev:hover,
.image-slider--dark .image-slider__button-next:hover {
  box-shadow: inset 0 0 0 1px #fff;
}

.image-slider--dark .image-slider__button-prev:hover::before,
.image-slider--dark .image-slider__button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.image-slider--dark .image-slider__button-prev:hover span,
.image-slider--dark .image-slider__button-next:hover span {
  color: #192020;
}

.section-case-study-banner .case-study-heading .cs-hero-banner .cs-banner {
  aspect-ratio: auto 1440/810;
  height: auto;
}

.section-introduction .introduction-main {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 40px;
  column-gap: 40px;
}

@media screen and (min-width: 1365px) and (max-width: 1599px) {
  .section-introduction .introduction-main {
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .section-introduction .introduction-main {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-introduction .introduction-main {
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}

.section-introduction .introduction-main .introduction-left-main {
  position: -webkit-sticky;
  position: sticky;
  width: 350px;
  top: 100px;
  left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (min-width: 1365px) and (max-width: 1599px) {
  .section-introduction .introduction-main .introduction-left-main {
    width: 315px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .section-introduction .introduction-main .introduction-left-main {
    width: 300px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-introduction .introduction-main .introduction-left-main {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-left-main {
    display: none;
  }
}

.section-introduction .introduction-main .introduction-left-main .introduction-left {
  background-color: #fff;
  padding: 15px 30px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.section-introduction .introduction-main .introduction-left-main .introduction-left .redirection-datas {
  padding: 10px 0;
}

.section-introduction .introduction-main .introduction-left-main .introduction-left .redirection-datas:nth-child(2) {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.section-introduction .introduction-main .introduction-left-main .introduction-left .redirection-datas ul li {
  padding: 4px 0;
}

.section-introduction .introduction-main .introduction-left-main .introduction-left .redirection-datas ul li a {
  position: relative;
}

.section-introduction .introduction-main .introduction-left-main .introduction-left .redirection-datas ul li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  bottom: -3px;
  left: 0;
  border-radius: 10px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.section-introduction
  .introduction-main
  .introduction-left-main
  .introduction-left
  .redirection-datas
  ul
  li
  a:hover:after {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.section-introduction .introduction-main .introduction-left-main .font-28 {
  font-size: 28px;
  line-height: 2.2rem;
}

@media screen and (max-width: 1199px) {
  .section-introduction .introduction-main .introduction-left-main .font-28 {
    font-size: 26px;
  }
}

@media screen and (max-width: 991px) {
  .section-introduction .introduction-main .introduction-left-main .font-28 {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .section-introduction .introduction-main .introduction-left-main .font-28 {
    font-size: 22px;
  }
}

.section-introduction .introduction-main .introduction-left-main video {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-introduction .introduction-main .introduction-left-main .details-btn {
    font-size: 14px;
  }
}

.section-introduction .introduction-main .introduction-right {
  flex: 1;
  width: 100%;
}

.section-introduction .introduction-main .introduction-right .portfolio-screens {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media screen and (min-width: 1365px) and (max-width: 1599px) {
  .section-introduction .introduction-main .introduction-right .portfolio-screens {
    grid-gap: 35px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .section-introduction .introduction-main .introduction-right .portfolio-screens {
    grid-gap: 30px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-introduction .introduction-main .introduction-right .portfolio-screens {
    grid-gap: 20px;
  }
}

@media screen and (min-width: 575px) and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-right .portfolio-screens {
    grid-gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 575px) {
  .section-introduction .introduction-main .introduction-right .portfolio-screens {
    grid-gap: 30px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.section-introduction .introduction-main .introduction-right .portfolio-screens .pf-screen-img img {
  aspect-ratio: auto 680/500;
  height: auto;
}

.section-introduction .introduction-main .introduction-right .portfolio-screens-big {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin: 40px 0 90px;
}

@media screen and (min-width: 1365px) and (max-width: 1599px) {
  .section-introduction .introduction-main .introduction-right .portfolio-screens-big {
    margin: 40px 0 70px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-introduction .introduction-main .introduction-right .portfolio-screens-big {
    margin: 40px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-right .portfolio-screens-big {
    margin: 30px 0 30px;
  }
}

.section-introduction .introduction-main .introduction-right .portfolio-screens-big .video-container {
  line-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.section-introduction .introduction-main .introduction-right .portfolio-screens-big .video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.section-introduction .introduction-main .introduction-right .portfolio-screens-big .video-container .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.section-introduction .introduction-main .introduction-right .portfolio-screens-big .pf-screen-img img {
  aspect-ratio: auto 1400/830;
  height: auto;
}

.section-introduction .introduction-main .introduction-right .impact-portfolio-screens-big {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-right .impact-portfolio-screens-big {
    margin: 35px 0 0;
  }
}

.section-introduction .introduction-main .introduction-right .impact-portfolio-screens-big .pf-screen-img img {
  aspect-ratio: auto 1400/830;
  height: auto;
}

.section-introduction .introduction-main .introduction-right .solutions-screens {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 35px 0 90px;
}

@media screen and (min-width: 1365px) and (max-width: 1599px) {
  .section-introduction .introduction-main .introduction-right .solutions-screens {
    margin: 35px 0 70px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .section-introduction .introduction-main .introduction-right .solutions-screens {
    grid-gap: 30px;
    margin: 30px 0 40px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-introduction .introduction-main .introduction-right .solutions-screens {
    grid-gap: 30px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    margin: 35px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-right .solutions-screens {
    margin: 30px 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-right .solutions-screens {
    grid-gap: 30px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.section-introduction .introduction-main .introduction-right .solutions-screens .solution-content {
  background-color: #fff;
  padding: 30px;
}

@media screen and (min-width: 1365px) and (max-width: 1599px) {
  .section-introduction .introduction-main .introduction-right .solutions-screens .solution-content {
    padding: 25px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .section-introduction .introduction-main .introduction-right .solutions-screens .solution-content {
    padding: 25px 20px;
  }
}

@media screen and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-right .solutions-screens .solution-content {
    padding: 25px 20px;
  }
}

.section-introduction .introduction-main .introduction-right .impact-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 30px;
  margin: 30px 0 40px;
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .section-introduction .introduction-main .introduction-right .impact-data {
    grid-gap: 30px;
    margin: 30px 0 40px;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-introduction .introduction-main .introduction-right .impact-data {
    grid-gap: 15px;
    margin: 30px 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-right .impact-data {
    display: flex;
    grid-gap: 15px;
    margin: 30px 0 35px;
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 10px;
  }
}

.section-introduction .introduction-main .introduction-right .impact-data .impact-numbers {
  background-color: #fff;
  padding: 50px 30px;
}

@media screen and (min-width: 1365px) and (max-width: 1599px) {
  .section-introduction .introduction-main .introduction-right .impact-data .impact-numbers {
    padding: 40px 30px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .section-introduction .introduction-main .introduction-right .impact-data .impact-numbers {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (min-width: 767px) and (max-width: 991px) {
  .section-introduction .introduction-main .introduction-right .impact-data .impact-numbers {
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .section-introduction .introduction-main .introduction-right .impact-data .impact-numbers {
    padding: 15px;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
  }
}

.section-introduction .introduction-main .introduction-right .impact-data .impact-numbers:nth-child(1) {
  background-color: cornflowerblue;
}

.section-introduction .introduction-main .introduction-right .impact-data .impact-numbers:nth-child(2) {
  background-color: gold;
}

.section-introduction .introduction-main .introduction-right .impact-data .impact-numbers:nth-child(3) {
  background-color: var(--clr-light-green);
}

.section-introduction #myVideo:hover {
  cursor: pointer;
  /* Optional: Change cursor to pointer on hover */
}

.section-introduction #myVideo:hover::after {
  content: "";
  /* Create a pseudo-element */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  /* Allow clicks to go through the pseudo-element */
}

.section-introduction #myVideo:hover::-webkit-media-controls {
  display: none !important;
  /* Hide default controls in WebKit browsers (e.g., Chrome, Safari) */
}

.section-introduction #myVideo:hover::-webkit-media-controls-panel {
  display: none !important;
  /* Hide default controls in Firefox */
}

.section-introduction #myVideo:hover video::-webkit-media-controls {
  display: none !important;
  /* Hide default controls in Firefox */
}

.section-introduction #myVideo:hover video::-webkit-media-controls-panel {
  display: none !important;
  /* Hide default controls in Firefox */
}

.section-clients-words {
  background-color: #f6f6f6;
}

.section-clients-words .clients-words p {
  position: relative;
  font-size: 30px;
  line-height: 1.5;
}

@media screen and (min-width: 1365px) and (max-width: 1599px) {
  .section-clients-words .clients-words p {
    font-size: 28px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1365px) {
  .section-clients-words .clients-words p {
    font-size: 26px;
  }
}

@media screen and (max-width: 991px) {
  .section-clients-words .clients-words p {
    font-size: 18px;
  }
}

.section-clients-words .clients-words p .left-quote {
  position: absolute;
  margin-top: -20px;
}

.section-clients-words .clients-words p .right-quote {
  position: absolute;
  right: 0;
}

.section-clients-words .clients-words .fa-quote-left:before {
  content: "\f10d";
  font-size: 12px;
}

.section-clients-words .clients-words .fa-quote-left:before,
.section-clients-words .clients-words .fa-quote-right:before {
  font-size: 12px;
}

.section-clients-words .client-details .client-dp img {
  aspect-ratio: auto 80/80;
  height: auto;
}

.section-clients-words .client-details .client-designation {
  line-height: 1.4;
  opacity: 0.8;
}

.section-clients-words .client-details .media {
  display: flex;
  align-items: flex-center;
}

.section-case-study-next {
  background-color: blue;
}

.section-next {
  position: relative;
}

.section-next:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--white);
  height: 100%;
  width: 100%;
  z-index: -100;
  transition: var(--transition);
}

.portfolio-next-btn {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  .portfolio-next-btn {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 1365px) {
  .portfolio-next-btn {
    padding: 25px 0 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .portfolio-next-btn {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio-next-btn {
    padding: 25px 0;
  }
}

.next-main a {
  padding: 100px 0;
  display: block;
}

@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  .next-main a {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .next-main a {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .next-main a {
    padding: 25px 0;
  }
}

.next-main:hover {
  cursor: pointer;
}

.next-main .cursor {
  z-index: 1 !important;
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  cursor: pointer;
  scroll-behavior: smooth;
}

.next-main .cursor .img-scale-0 {
  height: 376px;
  width: 376px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
}

@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  .next-main .cursor .img-scale-0 {
    height: 320px;
    width: 320px;
  }
}

.next-main .cursor .img-scale-0 img {
  height: 376px;
  width: 376px;
  transform: scale(0);
}

.next-main .cursor .img-main {
  height: 376px;
  width: 376px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  .next-main .cursor .img-main {
    height: 320px;
    width: 320px;
  }
}

.next-main .cursor .img-main img {
  height: 376px;
  width: 376px;
  transform: scale(0);
  animation: fadeIn 1s;
  -webkit-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
}

.next-main a:hover h2 {
  filter: invert(1) !important;
  color: #888 !important;
}

.next-main h2 {
  font-size: 6.6rem;
  line-height: 7.6rem;
  margin-left: -0.3rem;
  color: #ffffff;
  position: relative;
  text-align: center;
}

@media only screen and (max-width: 1599px) {
  .next-main h2 {
    font-size: 5rem;
    line-height: 5.6rem;
    margin-left: -0.2rem;
  }
}

@media only screen and (max-width: 1199px) {
  .next-main h2 {
    font-size: 5rem;
    line-height: 5.4rem;
    margin-left: -0.2rem;
  }
}

@media only screen and (max-width: 991px) {
  .next-main h2 {
    font-size: 4.8rem;
    line-height: 6.4rem;
    margin-left: -0.2rem;
  }
}

@media only screen and (max-width: 767px) {
  .next-main h2 {
    font-size: 4.5rem;
    line-height: 6rem;
    margin-left: -0.2rem;
  }
}

@media only screen and (max-width: 575px) {
  .next-main h2 {
    font-size: 4rem;
    line-height: 5rem;
    margin-left: -0.2rem;
  }
}

.next-case-study {
  background-color: #000;
}

.next-case-study nav {
  display: flex;
  flex-direction: column;
  margin: 15vh 50px;
  padding: clamp(1rem, 5vw, 5rem);
}

@media only screen and (max-width: 1199px) {
  .next-case-study nav {
    margin: 12vh 50px;
  }
}

@media only screen and (max-width: 767px) {
  .next-case-study nav {
    margin: 40px 15px;
  }
}

.next-case-study nav > a {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 7rem);
  text-decoration: none;
  position: relative;
}

.next-case-study nav > a:hover {
  color: rgb(255, 255, 255);
  font-weight: 500;
}

.next-case-study nav > a > .next-case {
  display: block;
  position: relative;
  z-index: 2;
  padding-block: 1rem;
}

.next-case-study nav > a:hover > .next-case {
  border-top-color: rgb(255, 255, 255);
  border-bottom-color: rgb(255, 255, 255);
  mix-blend-mode: difference;
}

.next-case-study nav > a > img {
  width: min(28vw, 500px);
  position: absolute;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition:
    transform 250ms,
    opacity 250ms;
  pointer-events: none;
  -o-filter: brightness(0.8);
  -moz-filter: brightness(0.8);
  -ms-filter: brightness(0.8);
  filter: brightness(0.8);
}

.next-case-study nav > a:hover > img {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.sitemap-wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 1199px) {
  .sitemap-wrapper {
    margin-top: 45px;
  }
}

@media screen and (max-width: 991px) {
  .sitemap-wrapper {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .sitemap-wrapper {
    margin-top: 35px;
  }
}

@media screen and (max-width: 575px) {
  .sitemap-wrapper {
    margin-top: 25px;
  }
}

.sitemap-wrapper .link-list-block .detail__list__sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .sitemap-wrapper .link-list-block .detail__list__sitemap {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .sitemap-wrapper .link-list-block .detail__list__sitemap {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 575px) {
  .sitemap-wrapper .link-list-block .detail__list__sitemap {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .sitemap-wrapper .link-list-block .detail__list {
    margin-top: 10px;
  }
}

/*# sourceMappingURL=style.css.map */

/* career video start*/

/* career video end*/
/*---- About us page video start ---*/
.our-vision__video {
  position: relative;
  height: 0;
  padding-bottom: 59.5%;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
}

@media only screen and (max-width: 1919px) {
  .our-vision__video {
    padding-bottom: 52.24%;
    border-radius: 30px;
  }
}

@media only screen and (max-width: 1023px) {
  .our-vision__video {
    border-radius: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .our-vision__video {
    border-radius: 14px;
  }
}

.our-vision__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 44, 97, 0) 0%, rgba(9, 44, 97, 0.58) 100%);
}

.our-vision__video video {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.our-vision__video-thumb {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.our-vision__video-thumb.is-clicked {
  opacity: 0;
}

.our-vision__video-pause,
.our-vision__video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 60px;
  width: 60px;
  transform: translate(-50%, -50%);
  z-index: 7;
  border: 5px solid rgba(255, 255, 255, 0.4);
  border-radius: 99em;
  user-select: none;
  transition: opacity 0.3s ease;
}

@media only screen and (max-width: 1023px) {
  .our-vision__video-pause,
  .our-vision__video-play {
    height: 80px;
    width: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .our-vision__video-pause,
  .our-vision__video-play {
    height: 50px;
    width: 50px;
  }
}

.our-vision__video-pause.hide,
.our-vision__video-play.hide {
  opacity: 0;
}

/*---- About us page video end ---*/

.digital-transform-looking .sec-service-slider .service-slider__top .btn-black,
.digital-transform-looking .sec-service-slider .service-mob-btn {
  display: none !important;
}

.sec-detail .detail__expand {
  margin-top: 40px;
}

@media only screen and (max-width: 1599px) {
  .sec-detail .detail__expand {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .image__404 {
    width: 450px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 991px) {
  .image__404 {
    width: 400px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 767px) {
  .image__404 {
    width: 80%;
    margin: 0 auto;
  }
}

.header__nav > ul > li:not(:last-child) > .header__nav-link.active {
  opacity: 1;
}

@media only screen and (max-width: 1279px) {
  .header__col-card-auth-img {
    width: 50px;
    height: 50px;
  }

  .header__col-card-auth-name {
    font-size: 16px;
  }

  .header__col-card-auth-country {
    font-size: 14px;
  }

  .header__col-card-auth-country img {
    width: 14px;
    height: 14px;
  }
}

/*--- Home page Hero Slider Update Css Start ---*/

.home-hero-banner-main .our-work .app-features ul li .material-symbols-rounded {
  font-size: 26px;
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .home-hero-banner-main .home-hero-banner .home-hero-parent {
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}

/*.home-hero-banner-main .swipe-btn-outer {*/
/*  display: flex;*/
/*  width: 100%;*/
/*  justify-content: space-between;*/
/*  height: 100%;*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  align-items: center;*/
/*  z-index: 0;*/
/*}*/

.home-hero-banner-main .swipe-btn-outer .com-btn {
  height: 68px;
  width: 68px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  top: 10px;
  left: auto;
  right: auto;
}

@media only screen and (max-width: 1365px) {
  .home-hero-banner-main .swipe-btn-outer .com-btn {
    height: 48px;
    width: 48px;
  }
}
.home-hero-banner-main .swipe-btn-outer .com-btn .icon {
  width: 24px;
  height: 24px;
}
.home-hero-banner-main .swipe-btn-outer .com-btn .icon:before {
  background-color: rgba(0, 0, 0, 0.25);
}

.home-hero-banner-main .swipe-btn-outer .com-btn:hover .icon:before {
  background-color: var(--clr-white);
}
.home-hero-banner-main .swipe-btn-outer .com-btn span {
  position: relative;
  transition: color 0.3s;
  color: rgba(0, 0, 0, 0.25);
}

.home-hero-banner-main .swipe-btn-outer .com-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-black);
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-hero-banner-main .swipe-btn-outer .com-btn:after {
  display: none;
}

.home-hero-banner-main .swipe-btn-outer .com-btn:hover span {
  color: var(--clr-white);
  position: relative;
}

.home-hero-banner-main .swipe-btn-outer .com-btn:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

@media only screen and (max-width: 1199px) {
  .home-hero-banner-main .swipe-btn-outer {
    display: none;
  }
}

.home-hero-banner-main .swipe-btn-outer .swiper-button-prev {
  position: absolute;
  top: calc(50% - 24px);
  left: calc(15px);
}

.home-hero-banner-main .swipe-btn-outer .swiper-button-next {
  position: absolute;
  top: calc(50% - 24px);
  right: calc(15px);
}

@media only screen and (min-width: 1599px) {
  .home-hero-banner-main .swipe-btn-outer .swiper-button-prev {
    margin-left: -76px;
    z-index: 1;
  }

  .home-hero-banner-main .swipe-btn-outer .swiper-button-next {
    margin-right: -76px;
    z-index: 1;
  }
}

@media only screen and (min-width: 1200px) {
  .swipe-btn-outer {
    z-index: 1;
  }

  .home-hero-banner-main .swipe-btn-outer .swiper-button-prev {
    z-index: 2;
  }

  .home-hero-banner-main .swipe-btn-outer .swiper-button-next {
    z-index: 2;
  }
}

/*--- Home page Hero Slider Update Css End ---*/

/*--- START : case study title css ---*/
.case-study-title {
  padding-right: 90px;
}
@media screen and (max-width: 1366px) {
  .case-study-title {
    padding-right: 0;
  }
}

/*--- END : case study title css ---*/

/*--- START : bg with lists css ---*/

@media screen and (max-width: 767px) {
  .bg-with-lists {
    padding: 20px 14px;
  }

  .bg-with-lists ul {
    display: grid !important;
  }

  .bg-with-lists ul .link-dashed {
    border-radius: 16px;
    align-items: flex-start;
    text-align: left;
    padding: 6px;
  }
}

/*--- END : bg with lists css ---*/

/*---- We Serve Section Css Start 4/3/24 Mi-122 ---*/

@media only screen and (min-width: 1500px) {
  .custom-ind-slider {
    width: calc((100vw + 1455px) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}

.we-serve__slider {
  padding: 0;
}

@media only screen and (min-width: 1366px) {
  .we-serve__slider .swiper-wrapper .swiper-slide:last-child {
    margin-right: 40px;
  }
}

@media only screen and (min-width: 1366px) {
  .service-slider__inner .service-slider__main .swiper-slide:last-child {
    margin-right: 40px;
  }
}

/*---- We Serve Section Css End 4/3/24 Mi-122 ---*/

/*insights section button css starts here*/
.industry-focused-insights .more-industry .card-content .btn-black,
.industry-focused-insights .more-industry .card-content .btn-white {
  display: none;
}

/*insights section button css ends here*/

/* START : AI page code */
.quiety-page-wrapper .mt-90 {
  margin-top: 90px;
}

.quiety-page-wrapper .sec-ai-hero .ai-hero {
  position: relative;
  z-index: 99;
}

.quiety-page-wrapper .ai-hero__title {
  font-size: 142px;
  max-width: 980px;
}

@media screen and (max-width: 1599px) {
  .quiety-page-wrapper .ai-hero__title {
    font-size: 100px;
  }

  .quiety-page-wrapper .ai-hero__title > span {
    background-color: transparent !important;
  }
}

@media screen and (max-width: 1439px) {
  .quiety-page-wrapper .ai-hero__title {
    font-size: 90px;
  }
}

@media screen and (max-width: 1199px) {
  .quiety-page-wrapper .ai-hero__title {
    font-size: 80px;
  }
}

@media screen and (max-width: 991px) {
  .quiety-page-wrapper .ai-hero__title {
    font-size: 90px;
  }
}

.quiety-page-wrapper .ai-hero__title span {
  padding: 0 2px;
}

/*.quiety-page-wrapper .ai-hero__img {*/
/*  min-height: 804px;*/
/*  position: absolute;*/
/*  right: 30px;*/
/*  top: 0;*/
/*  display: block;*/
/*  width: 640px;*/
/*  height: 804px;*/
/*}*/

.quiety-page-wrapper .ai-hero__img {
  position: relative;
  margin-right: 30px;
}

@media only screen and (max-width: 991px) {
  .quiety-page-wrapper .ai-hero__img {
    max-width: 60%;
    max-height: 80%;
    margin: 50px auto 0;
  }
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .ai-hero__img {
    max-width: 80%;
  }
}

.quiety-page-wrapper .ai-hero__img .round-icon {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 99em;
  right: -15px;
  top: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 99;
  background: var(--Gradient-1, linear-gradient(90deg, #ed184f 0%, #e117f1 39.06%, #0084ff 77.6%, #00c6e9 100%));
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .ai-hero__img .round-icon {
    width: 120px;
    height: 120px;
  }
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .ai-hero__img .round-icon {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (max-width: 375px) {
  .quiety-page-wrapper .ai-hero__img .round-icon {
    width: 50px;
    height: 50px;
  }
}

.quiety-page-wrapper .ai-hero__img .round-icon span {
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .ai-hero__img .round-icon span {
    display: none;
  }
}

.quiety-page-wrapper .ai-hero__img .round-icon span svg {
  margin-top: -5px;
}

.quiety-page-wrapper .aiart-gd-text {
  background: linear-gradient(91deg, #f22fb0 52.27%, #ff7426 96.15%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
}

.quiety-page-wrapper .aiart-outline-text {
  background: var(--Gradient-1, linear-gradient(90deg, #ed184f 0%, #e117f1 39.06%, #0084ff 77.6%, #00c6e9 100%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 4px rgba(0, 0, 0, 0);
  color: #fff;
}

.quiety-page-wrapper .ai-hero-text {
  max-width: 652px;
}

@media screen and (max-width: 1199px) {
  .quiety-page-wrapper .ai-hero-text {
    margin: 0 auto;
  }
}

.quiety-page-wrapper .ai-hero-list {
  max-width: 710px;
  gap: 14px;
}

@media screen and (max-width: 1599px) {
  .quiety-page-wrapper .ai-hero-list {
    max-width: 652px;
  }
}

@media screen and (max-width: 1199px) {
  .quiety-page-wrapper .ai-hero-list {
    margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-width: 991px) {
  .quiety-page-wrapper .ai-hero-list {
    justify-content: start;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
  }
}

@media screen and (max-width: 991px) {
  .quiety-page-wrapper .ai-hero-list li {
    margin-bottom: 5px;
  }
}

.quiety-page-wrapper .ai-hero-list li span {
  border-radius: 120px;
  padding: 8px 16px;
  display: block;
  transition: all 0.3s ease;
}

.quiety-page-wrapper .ai-hero-list li span:hover {
  background-color: #1769ff;
  color: #fff;
}

.quiety-page-wrapper .ai-hero {
  position: relative;
}

.quiety-page-wrapper .ai-hero-slider-container img {
  max-height: 100px;
}

@media screen and (max-width: 991px) {
  .quiety-page-wrapper .ai-hero__title span {
    padding: 2px;
  }

  .quiety-page-wrapper .ai-hero__title {
    font-size: 40px;
    text-align: center;
  }

  .quiety-page-wrapper .ai-hero__title img {
    max-width: 60px;
    margin-bottom: 10px;
  }

  .quiety-page-wrapper .ai-hero-text {
    text-align: center;
  }

  .quiety-page-wrapper .ai-hero-list {
    gap: 8px;
  }
}

.quiety-page-wrapper .ai-hero__decor_1 {
  position: absolute;
  top: -100px;
  left: 0;
}

.quiety-page-wrapper .ai-hero__decor_2 {
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .quiety-page-wrapper .sec-function .img-wrap img {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .function-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .function-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media only screen and (max-width: 480px) {
  .quiety-page-wrapper .function-list {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .function-list {
    margin-top: 35px;
  }
}

.quiety-page-wrapper .function-list li {
  max-width: 512px;
  padding: 24px;
  box-shadow:
    0px 4px 24px 0px rgba(58, 76, 102, 0.04) inset,
    0px -1.5px 4.5px 0px rgba(191, 197, 202, 0.65) inset;
  margin-bottom: 20px;
  border-radius: 7px;
  position: relative;
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: flex-start;
  grid-gap: 20px;
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .function-list li {
    display: flex;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 991px) {
  .quiety-page-wrapper .function-list li {
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .function-list li:last-child {
    width: 100%;
  }
}

.quiety-page-wrapper .function-list li:nth-child(2) {
  margin-left: 80px;
}

.quiety-page-wrapper .function-list li:nth-child(3) {
  margin-left: 160px;
}

.quiety-page-wrapper .function-list li .number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  height: 104px;
  border-radius: 10000px;
  background: linear-gradient(180deg, rgba(103, 240, 55, 0.71) -23.56%, rgba(255, 239, 95, 0) 96.15%);
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .function-list li .number {
    height: 35px;
    width: 35px;
    font-size: 20px;
    flex: 0 0 auto;
  }
}

.quiety-page-wrapper .function-list li:nth-child(2) .number {
  background: linear-gradient(180deg, rgba(159, 55, 240, 0.34) 0%, rgba(255, 99, 230, 0) 100%);
}

.quiety-page-wrapper .function-list li:nth-child(3) .number {
  background: linear-gradient(180deg, rgba(240, 155, 55, 0.34) 0%, rgba(255, 230, 139, 0) 100%);
}

.quiety-page-wrapper .function-list li:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/text-to-sql/line-arrow.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  bottom: 90px;
  left: -58px;
}

.quiety-page-wrapper .function-list li:nth-child(3)::before {
  bottom: 70px;
}

.quiety-page-wrapper .section-created-by-ai {
  background-color: #cbdce7;
}

.quiety-page-wrapper .aiart-btn-gd {
  background: linear-gradient(80.72deg, #f22fb0 17.87%, #ff7426 84.39%);
}

@media screen and (max-width: 1199px) {
  .quiety-page-wrapper .function-list li:nth-child(2) {
    margin-left: 0;
  }

  .quiety-page-wrapper .function-list li:nth-child(3) {
    margin-left: 0;
  }

  .quiety-page-wrapper .function-list li:not(:first-child)::before {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .quiety-page-wrapper .function-list li {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .quiety-page-wrapper .function-list li {
    display: flex;
    flex-direction: column;
    width: calc(50% - 15px);
  }

  .quiety-page-wrapper .function-list li .number {
    height: 50px;
    width: 50px;
    font-size: 24px;
    padding: 10px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 575px) {
  .quiety-page-wrapper .function-list li {
    width: 100%;
  }
}

/* END : AI page code */

/*---- AI page Css Start ---*/
.quiety-page-wrapper .section-companion {
  position: relative;
  z-index: 8;
}

.quiety-page-wrapper .section-companion .div-one {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .section-companion .div-one {
    display: none;
  }
}

.quiety-page-wrapper .section-companion .div-two {
  position: absolute;
  left: 0;
  top: 90%;
  transform: translateY(-90%);
  z-index: -1;
}

.quiety-page-wrapper .section-companion .cta {
  margin-top: 90px;
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .section-companion .cta {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }
}

@media only screen and (max-width: 991px) {
  .quiety-page-wrapper .section-companion .cta {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .section-companion .cta {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .section-companion .cta .cta-left {
    max-width: none !important;
  }
}

.quiety-page-wrapper .section-companion .cta .cta-right {
  flex: 0 0 auto;
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .section-companion .cta .cta-right {
    text-align: left;
    margin-right: auto;
  }
}

.quiety-page-wrapper .companion-details-main {
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  padding: 40px;
  gap: 30px;
  border-radius: 20px;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .companion-details-main {
    padding: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .quiety-page-wrapper .companion-details-main {
    flex-direction: column;
    padding: 35px 15px;
    align-items: start;
  }
}

.quiety-page-wrapper .gradient-text {
  background: var(--Gradient-1, linear-gradient(90deg, #ed184f 0%, #e117f1 39.06%, #0084ff 77.6%, #00c6e9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quiety-page-wrapper .art-main {
  padding: 20px 20px 5px 20px;
  border-radius: 5px;
  box-shadow:
    0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  height: 100%;
  background-color: var(--clr-white);
}

.quiety-page-wrapper .art-generator-slider .swiper-slide {
  height: auto;
}

.quiety-page-wrapper .achivable-slider {
  margin-bottom: 10px;
}

.quiety-page-wrapper .achivable-slider .swiper-button-prev,
.achivable-slider .swiper-button-next {
  display: none;
}

.quiety-page-wrapper .art-generator-slider .art-main .aiart-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(237, 109, 75, 0.2)),
    to(rgba(237, 109, 75, 0.2))
  );
  background: linear-gradient(0deg, rgba(237, 109, 75, 0.2), rgba(237, 109, 75, 0.2));
  transition: all 0.3s ease-in;
}

.quiety-page-wrapper .art-generator-slider .art-main .aiart-btn:hover {
  background: var(--Gradient-1, linear-gradient(90deg, #ed184f 0%, #e117f1 39.06%, #0084ff 77.6%, #00c6e9 100%));
  transition: all 0.3s ease-in;
}

.quiety-page-wrapper .art-generator-slider .art-main .aiart-btn:hover svg {
  filter: brightness(4.5);
  transition: all 0.3s ease-in;
}

.quiety-page-wrapper .art-details {
  padding: 20px 0;
}

.quiety-page-wrapper .companion-right {
  flex: 0 0 auto;
}

.quiety-page-wrapper .companion-right img {
  border-radius: 24px;
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .companion-right img {
    border-radius: 15px;
  }
}

/*new page css starts here*/

.quiety-page-wrapper {
  background-color: #ffffff;
}

.quiety-page-wrapper .bg-light-sky {
  background-color: #f3f9ff;
}

.quiety-page-wrapper .clr-blue {
  color: #175cff;
}

.quiety-page-wrapper .common-content-wrap .short-text {
  gap: 12px;
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .choose-the-plan {
    padding-bottom: 0;
  }
}

.quiety-page-wrapper .choose-the-plan .div-outer {
  background-color: #fffcf5;
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .choose-the-plan .div-outer .choose-wrapper {
    padding: 0 15px;
  }
}

.quiety-page-wrapper .choose-the-plan .div-outer .choose-wrapper .item-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .choose-the-plan .div-outer .choose-wrapper .item-outer {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .choose-the-plan .div-outer .choose-wrapper .item-outer {
    grid-template-columns: 1fr;
  }
}

.quiety-page-wrapper .choose-the-plan .div-outer .choose-wrapper .item-outer .blocks {
  height: 100%;
}

.quiety-page-wrapper .choose-the-plan .div-outer .choose-wrapper .item-outer .rightside {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 30px;
}

.quiety-page-wrapper .choose-the-plan .div-outer .choose-wrapper .item-outer .block {
  padding: 30px;
  box-shadow:
    0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px 0px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .choose-the-plan .div-outer .choose-wrapper .item-outer .block {
    padding: 15px 15px 20px;
  }
}

.quiety-page-wrapper .choose-the-plan .item-outer .block .top {
  border-bottom: 1px solid var(--clr-dark-grey);
  padding-bottom: 30px;
}

.quiety-page-wrapper .choose-the-plan .item-outer .block .top-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiety-page-wrapper .choose-the-plan .item-outer .block .top-inner p {
  color: #212529;
}

.quiety-page-wrapper .choose-the-plan .item-outer .block .middle li {
  gap: 8px;
  margin-bottom: 10px;
}

.quiety-page-wrapper .choose-the-plan .item-outer .block .middle li .checkmark {
  background: var(--Gradient-1, linear-gradient(90deg, #ed184f 0%, #e117f1 39.06%, #0084ff 77.6%, #00c6e9 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  margin-left: 1px;
  padding-left: 1px;
}

@media only screen and (max-width: 320px) {
  .quiety-page-wrapper .choose-the-plan .item-outer .block .middle li .checkmark i {
    margin-right: 2px;
  }
}

.quiety-page-wrapper .choose-the-plan .item-outer .block .bottom .btn-gradient-one {
  display: block;
  text-align: center;
  margin-top: 0;
}

/*new page css ends here*/

/*new css*/

.quiety-page-wrapper .section-commuinity .card-one {
  position: relative;
  z-index: 8;
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .section-commuinity .card-one {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .section-commuinity .card-one.last-block {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .section-commuinity .card-one .counter-text-div {
    padding-top: 30px;
  }
}

.quiety-page-wrapper .backgroun-image-one {
  background-image: url("../img/text-to-sql/com-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.quiety-page-wrapper .h-100-vh {
  width: 100%;
  height: 100%;
}

.quiety-page-wrapper .pt-60 {
  padding-top: 60px;
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .pt-60 {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .pt-60 {
    padding-top: 35px;
  }
}

.quiety-page-wrapper .pb-60 {
  padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .pb-60 {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .pb-60 {
    padding-bottom: 35px;
  }
}

.quiety-page-wrapper .mb-20 {
  margin-bottom: 20px;
}

.quiety-page-wrapper .heading-class-h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #175cff;
}

.quiety-page-wrapper .heading-class-h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #0c0800;
}

.quiety-page-wrapper .span-roted-45-deg {
  transform: rotateZ(-45deg) translateY(10px);
}

.quiety-page-wrapper .fs-48 {
  font-size: 48px;
}

.quiety-page-wrapper .mi-centered-image {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.quiety-page-wrapper .mi-centered-image img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .quiety-page-wrapper .mi-centered-image {
    max-width: 60%;
  }
}

.quiety-page-wrapper .btn-gradient-one {
  position: relative;
  background: var(--Gradient-1, linear-gradient(90deg, #ed184f 0%, #e117f1 39.06%, #0084ff 77.6%, #00c6e9 100%));
  padding: 12px 24px;
  border-radius: 99em;
  display: inline-block;
  color: var(--clr-white);
  width: max-content;
  margin: 30px auto 0;
  min-width: 160px;
  text-align: center;
}

.quiety-page-wrapper .btn-gradient-one:hover {
  color: var(--clr-white);
}

.quiety-page-wrapper .aiart-clr {
  color: #ff7426;
}

.quiety-page-wrapper .card-one {
  background-color: #fff;
  width: 100%;
  height: 100%;
  box-shadow:
    0px 1px 3px 0px rgba(0, 0, 0, 0.1),
    0px 1px 2px 0px rgba(0, 0, 0, 0.06);
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .card-one {
    margin-bottom: 30px;
    height: auto;
  }
}

.quiety-page-wrapper .mt-40 {
  margin-top: 40px;
}

.quiety-page-wrapper .card-text-h6 {
  font-size: 20px;
  font-weight: 700;
  color: #0c0800;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.quiety-page-wrapper .span-line {
  content: "";
  background: var(--Gradient-1, linear-gradient(90deg, #ed184f 0%, #e117f1 39.06%, #0084ff 77.6%, #00c6e9 100%));
  width: 46px;
  height: 3px;
  display: block;
}

.quiety-page-wrapper .pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 1499px) {
  .quiety-page-wrapper .pt-80 {
    padding-top: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .quiety-page-wrapper .pt-80 {
    padding-top: 50px;
  }
}

.quiety-page-wrapper .ptb-80 {
  padding: 80px 0;
}

.quiety-page-wrapper .c-orange {
  color: #ff7426 !important;
}

.quiety-page-wrapper .fs-64 {
  font-size: 64px;
}

.quiety-page-wrapper .mt-30 {
  margin-bottom: 40px;
}

.quiety-page-wrapper .rainbow-text {
  background: linear-gradient(91deg, #f22fb0 52.27%, #ff7426 96.15%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.quiety-page-wrapper .aiart-btn-gd {
  background: linear-gradient(91deg, #f22fb0 52.27%, #ff7426 96.15%);
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  padding: 16px 28px;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .quiety-page-wrapper .section-get-started {
    padding-top: 0;
  }
}

.quiety-page-wrapper .section-get-started .get-started-main {
  background-color: #00193c;
  position: relative;
  z-index: 0;
}

.quiety-page-wrapper .section-get-started .get-started-main:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../img/text-to-sql/cta-bg.png");
  background-repeat: no-repeat;
  background-position: bottom left;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
}

@media only screen and (min-width: 768px) {
  .quiety-page-wrapper .flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
}

@media only screen and (max-width: 380px) {
  .quiety-page-wrapper .mt-40 {
    margin-top: 0px;
  }

  .quiety-page-wrapper .fs-64 {
    font-size: 44px !important;
  }

  .quiety-page-wrapper .heading-class-h2 {
    font-size: 32px !important;
  }

  .quiety-page-wrapper .section-get-started .get-started-main {
    background-color: #00193c;
    position: relative;
    z-index: 0;
    padding: 40px 15px !important;
  }

  .quiety-page-wrapper .pt-80 {
    padding-top: 40px;
  }
}

@media (min-width: 381px) and (max-width: 991px) {
  .quiety-page-wrapper .mt-40 {
    margin-top: 0px;
  }

  .quiety-page-wrapper .fs-64 {
    font-size: 44px !important;
  }
}

@media only screen and (min-width: 381px) and (max-width: 991px) and (min-width: 475px) {
  .quiety-page-wrapper .fs-64 {
    font-size: 48px !important;
  }
}

@media only screen and (min-width: 381px) and (max-width: 991px) and (min-width: 675px) {
  .quiety-page-wrapper .fs-64 {
    font-size: 54px !important;
  }
}

@media (min-width: 381px) and (max-width: 991px) {
  .quiety-page-wrapper .pt-80 {
    padding-top: 40px;
  }

  .quiety-page-wrapper .heading-class-h2 {
    font-size: 32px !important;
  }

  .quiety-page-wrapper .section-get-started .get-started-main {
    background-color: #00193c;
    position: relative;
    z-index: 0;
    padding: 40px 15px !important;
  }
}

/*# sourceMappingURL=style.css.map */

/*--- new-section-add-css-start ---*/
.quiety-page-wrapper .new-section-add {
  width: 100%;
}

.quiety-page-wrapper .what-we-do {
  color: #0d6efd;
  font-weight: 500;
  margin-bottom: 15px;
}

.quiety-page-wrapper .impressive {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .quiety-page-wrapper .impressive {
    display: none;
  }
}

.quiety-page-wrapper .new-steps-one {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .quiety-page-wrapper .new-steps-one {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .quiety-page-wrapper .new-steps-one {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 575px) {
  .quiety-page-wrapper .new-steps-one {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 575px) and (max-width: 1023px) {
  .quiety-page-wrapper .new-steps-one {
    padding: 0 0 15px 2px;
  }
}

@media screen and (max-width: 991px) {
  .quiety-page-wrapper .steps-main-new {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .quiety-page-wrapper .steps-main-new {
    width: 100%;
  }
}

.quiety-page-wrapper .steps-main-new {
  padding: 24px;
  border-radius: 6px;
  -webkit-box-shadow:
    0px 2px 4px 0px rgba(0, 0, 0, 0.1),
    0px 2px 3px 0px rgba(0, 0, 0, 0.06);
  box-shadow:
    0px 2px 4px 0px rgba(0, 0, 0, 0.1),
    0px 2px 3px 0px rgba(0, 0, 0, 0.06);
}

.quiety-page-wrapper .new-process {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 20px;
}

@media only screen and (max-width: 575px) {
  .quiety-page-wrapper .new-process {
    margin: 0;
    height: auto;
  }
}

.quiety-page-wrapper .what-left-icon {
  margin-top: -20px;
  margin-left: -30px;
}

@media screen and (min-width: 1200px) and (max-width: 1599px) {
  .quiety-page-wrapper .what-left-icon {
    margin-left: 0px;
  }
}

@media screen and (max-width: 1199px) {
  .quiety-page-wrapper .what-left-icon {
    display: none;
  }
}

.quiety-page-wrapper .what-right-icon {
  text-align: right;
  margin-top: 20px;
  margin-right: -120px;
}

@media screen and (min-width: 1200px) and (max-width: 1699px) {
  .quiety-page-wrapper .what-right-icon {
    margin-right: -10px;
  }
}

@media screen and (max-width: 1199px) {
  .quiety-page-wrapper .what-right-icon {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .quiety-page-wrapper .ai-bg-section {
    padding-bottom: 0;
  }
}

/* /---------new-section-add-css-end---------/ */

.z-10 {
  z-index: 10;
}

/*insights section button remove css ends here*/

/*---- services-new-hero-section start Mi-122 (Ai-develpment-web-pages)----*/

@media screen and (max-width: 1499px) {
  .services-new-hero-section .services-hero-section .font-80 {
    font-size: 38px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .services-new-hero-section .services-hero-section .font-80 {
    font-size: 32px;
    line-height: 1.2;
  }
}

.services-new-hero-section {
  background: #f6fafd url("./../img/hero-banner/ai-development-hero.png") no-repeat;
  background-size: cover !important;
  background-position: right 0% bottom 0;
  position: relative;
  height: calc(100vh - 80px);
}

.services-new-hero-section .services-img-gradiant-overlay {
  position: relative;
}

.services-new-hero-section .services-img-gradiant-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  pointer-events: none;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, #fff, 45deg);
}

.services-new-hero-section.no-bg {
  background: none;
}

.services-new-hero-section.bg-init {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover !important;
}

@media screen and (min-width: 1280px) {
  .services-new-hero-section.bg-init.hero-section-uiux {
    background-image: url("../img/hire-page-bg/hire-python.webp");
  }
}

.services-new-hero-section.bg-light-blue {
  background: #f6fafd;
}

.services-new-hero-section .bg-shadow {
  box-shadow: -1px 30px 10px -1px #fffdfd;
  border-radius: 10px;
}

@media screen and (max-width: 1699px) {
  .services-new-hero-section {
    background-position: right 40% bottom 0;
    height: 100vh;
  }
}

@media screen and (max-width: 1200px) {
  .services-new-hero-section {
    padding: 40px 0 0;
    height: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .services-new-hero-section {
    height: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .services-new-hero-section {
    padding: 0;
  }
}

@media screen and (max-width: 1199px) {
  .services-new-hero-section::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    pointer-events: none;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    /* White gradient with 50% opacity */
  }
}

@media only screen and (min-width: 992px) and (max-width: 1599px) {
  .services-hero-section {
    max-width: 800px;
  }
}

@media screen and (max-width: 1199px) {
  .services-new-hero-section {
    background-position: right 60% bottom 0;
    padding: 40px 0;
    background-size: cover;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .services-new-hero-section {
    background-position: right 40% bottom 0;
    padding: 40px 0 125px;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .services-new-hero-section {
    /* background-position: right 40% bottom 0; */
    padding: 25px 0 25px;
    /* background-size: cover; */
    background-image: none;
  }
}

.services-new-hero-section .services-hero-section .services-hero-statistics {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: 25% 25% 25% 25%;
  margin: 50px 0 0 0;
  max-width: 780px;
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .services-new-hero-section .services-hero-section .services-hero-statistics {
    margin: 30px 0 60px 0;
  }
}

@media screen and (min-width: 1500px) {
  .services-new-hero-section .services-hero-section .services-hero-statistics {
    margin: 50px 0 75px 0;
  }

  .usa .services-new-hero-section .services-hero-section .services-hero-statistics {
    margin: 140px 0 20px 0;
  }
}

@media screen and (max-width: 991px) {
  .services-new-hero-section .services-hero-section .services-hero-statistics {
    max-width: 100%;
    display: grid;
  }
}

@media screen and (max-width: 767px) {
  .services-new-hero-section .services-hero-section .services-hero-statistics {
    margin: 15px 0 0 0;
    display: flex;
  }
}

.services-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards {
  flex: 1;
  width: 25%;
}

@media screen and (max-width: 1199px) {
  .services-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards {
    width: 50%;
    margin: 10px 0;
    flex: initial;
  }
}

.services-new-hero-section .services-hero-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.services-new-hero-section .services-hero-section-video {
  height: 600px;
  width: 600px;
  object-fit: cover;
  border-radius: 24px;
}

@media screen and (max-width: 1900px) {
  .services-new-hero-section .services-hero-section-video {
    height: 500px;
    width: 500px;
  }
}

@media screen and (max-width: 1365px) {
  .services-new-hero-section .services-hero-section-video {
    height: 450px;
    width: 450px;
  }
}

@media screen and (max-width: 1199px) {
  .services-new-hero-section .services-hero-section-video {
    height: 400px;
    width: 400px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1920px) {
  .services-new-hero-section .services-hero-section-video {
    height: 550px;
    width: 550px;
  }
}

@media screen and (max-width: 991px) {
  .services-new-hero-section .services-hero-section-video {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .services-new-hero-section .services-hero-section-video {
    height: 450px;
    width: 450px;
  }
}

.services-new-hero-section .services-hero-section p {
  margin: 30px 0 35px;
}

@media screen and (max-width: 1499px) {
  .services-new-hero-section .services-hero-section p {
    margin: 22px 0 24px;
  }
}

@media screen and (max-width: 1199px) {
  .services-new-hero-section .services-hero-section p {
    margin: 25px 0 25px;
  }
}

@media screen and (max-width: 767px) {
  .services-new-hero-section .services-hero-section p {
    margin: 10px 0 25px;
  }
}

@media only screen and (max-width: 991px) {
  .hire-new-hero-section .services-new-hero-section .services-hero-section .services-hero-statistics {
    display: flex;
  }
}

/*---services-new-client-testimonial start --*/
.section-services-new-client-testimonial {
  margin-top: -86px;
  position: relative;
}

@media screen and (max-width: 1365px) {
  .section-services-new-client-testimonial {
    margin-top: 0px;
  }
}

.section-services-new-client-testimonial::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 86px;
  background-color: rgb(240 240 240);
  z-index: -1;
}

.services-new-client-testimonial {
  margin: 0 auto;
}

.services-new-client-testimonial .our-trusted-clients {
  background-color: var(--clr-black);
  padding: 30px 20px 22px;
}

.services-new-client-testimonial .our-trusted-clients .clientSwiper {
  margin-top: 25px;
}

@media screen and (max-width: 1199px) {
  .services-new-client-testimonial .our-trusted-clients {
    /*margin-bottom: 50px;*/
  }
}

@media screen and (max-width: 767px) {
  .services-new-client-testimonial .our-trusted-clients {
    /*margin-bottom: 40px;*/
  }
}

/*---services-new-client-testimonial end --*/

/*-- section book with use CTA start --*/
.sec-book-with-us:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-color: var(--clr-off-white);
}

.sec-book-with-us.hire-uiuxpage:after {
  bottom: 0;
  top: auto;
}

.sec-book-with-us.removebg:after {
  display: none;
}

.sec-book-with-us .inner-content {
  padding: 35px 35px 35px 60px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
  background-color: var(--clr-black);
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content {
    padding: 20px;
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .sec-book-with-us .inner-content {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .sec-book-with-us .inner-content {
    padding: 22px 15px 25px;
  }
}

.sec-book-with-us .inner-content:after {
  content: "";
  position: absolute;
  background: url("../img/hire-ai-page/bg-layer.webp") no-repeat center top;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

@media only screen and (max-width: 575px) {
  .sec-book-with-us .inner-content:after {
    display: none;
  }
}

.sec-book-with-us .inner-content {
  position: relative;
  z-index: 9;
}

.sec-book-with-us .inner-content .book-wrapper {
  display: flex;
  align-items: end;
  flex: 0 0 auto;
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper {
    display: block;
  }
}

.sec-book-with-us .inner-content .book-wrapper.bottomside {
  position: absolute;
  bottom: 0;
  right: 35px;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper.bottomside {
    position: relative;
    right: 0;
  }
}

.sec-book-with-us .inner-content .book-wrapper img.bottom {
  transform: translateY(44px);
}

@media only screen and (max-width: 1199px) {
  .sec-book-with-us .inner-content .book-wrapper.bottomside .img-wrap {
    text-align: right;
  }
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper .img-wrap {
    display: none;
  }
}

.sec-book-with-us .inner-content .book-wrapper .img-wrap img {
  width: 100%;
  max-width: 250px;
  margin-right: 10px;
  aspect-ratio: auto 253/282;
}

.sec-book-with-us .inner-content .book-wrapper .img-wrap.img-wrap--large img {
  width: 463px;
  aspect-ratio: auto 463/299;
}

@media only screen and (max-width: 1199px) {
  .sec-book-with-us .inner-content .book-wrapper.bottomside .img-wrap img {
    max-width: 70%;
  }
}

.sec-book-with-us .inner-content .book-wrapper .content-list {
  margin-left: -90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list {
    margin-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 575px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list {
    grid-template-columns: 1fr;
  }
}

.sec-book-with-us .inner-content .book-wrapper .content-list li {
  border: 1px solid var(--clr-black);
  position: relative;
  padding: 9px 12px;
  border-radius: 99em;
  display: flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list li {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list li {
    padding: 8px;
  }
}

.sec-book-with-us .inner-content .book-wrapper .content-list li:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(44px);
  border-radius: 99em;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li:first-child {
  margin-left: 60px;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li:nth-child(2) {
  margin-left: 40px;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li:nth-child(3) {
  margin-left: 20px;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list li:first-child,
  .sec-book-with-us .inner-content .book-wrapper .content-list li:nth-child(2),
  .sec-book-with-us .inner-content .book-wrapper .content-list li:nth-child(3) {
    margin: 0;
  }
}

.sec-book-with-us .inner-content .book-wrapper .content-list li span {
  position: relative;
  z-index: 2;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li .small-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li .small-icon img {
  width: 15px;
  aspect-ratio: auto 15/15;
}

/*-- section book with use CTA end --*/

.projects-delivered {
  color: var(--clr-white);
}

.projects-delivered.project-bg-grey .projects-delivered__item {
  background-color: var(--clr-off-grey);
}

.projects-delivered.project-bg-grey .projects-delivered__item .projects-delivered__item-icon {
  border: 1px solid var(--clr-black);
}

.projects-delivered.project-bg-grey .projects-delivered__item .projects-delivered__features li {
  background-color: var(--clr-white);
}

.projects-delivered__text {
  margin-bottom: 40px;
}

.projects-delivered .swiper-slide {
  width: 500px;
}

@media only screen and (max-width: 1599px) {
  .projects-delivered .swiper-slide {
    width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .projects-delivered .swiper-slide {
    width: 90%;
  }
}

.projects-delivered__slider {
  padding: 0 15px;
}

.projects-delivered__slider .swiper-slide {
  height: auto;
}

.projects-delivered__slider .swiper-slide:nth-child(odd) .projects-delivered__item .projects-delivered-status {
  background-color: rgba(255, 216, 192, 0.4);
}

.projects-delivered__slider .swiper-slide:nth-child(even) .projects-delivered__item .projects-delivered-status {
  background-color: rgba(181, 241, 204, 0.4);
}

.projects-delivered__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
  margin-top: 30px;
  margin-right: 0.75rem;
}

@media screen and (max-width: 991px) {
  .projects-delivered__nav {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .projects-delivered__nav {
    margin-top: 20px;
  }
}

@media screen and (min-width: 1500px) {
  .projects-delivered__nav {
    max-width: 1446px;
  }
}

.projects-delivered__slider-button-prev,
.projects-delivered__slider-button-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media only screen and (max-width: 1365px) {
  .projects-delivered__slider-button-prev,
  .projects-delivered__slider-button-next {
    height: 48px;
    width: 48px;
  }
}

.projects-delivered__slider-button-prev::before,
.projects-delivered__slider-button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .projects-delivered__slider-button-prev::before,
  .projects-delivered__slider-button-next::before {
    transition: none;
  }
}

.projects-delivered__slider-button-prev span,
.projects-delivered__slider-button-next span {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
}

@media only screen and (max-width: 1199px) {
  .projects-delivered__slider-button-prev span,
  .projects-delivered__slider-button-next span {
    transition: none;
  }
}

.projects-delivered__slider-button-prev:hover,
.projects-delivered__slider-button-next:hover {
  box-shadow: inset 0 0 0 1px #fff;
}

.projects-delivered__slider-button-prev:hover,
.projects-delivered__slider-button-prev:focus,
.projects-delivered__slider-button-next:hover,
.projects-delivered__slider-button-next:focus {
  outline: none;
}

.projects-delivered__slider-button-prev:hover::before,
.projects-delivered__slider-button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.projects-delivered__slider-button-prev:hover span,
.projects-delivered__slider-button-next:hover span {
  color: #252b2b;
}

.projects-delivered__item {
  background-color: #fff;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.projects-delivered__item p {
  margin-bottom: 20px;
}

.projects-delivered__item.bg-off-white {
  background-color: #f7f7f7;
}

.projects-delivered__item .projects-delivered-status {
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--clr-black);
}
.projects-delivered__features {
  display: block;
  margin-top: auto;
}

.projects-delivered__features li {
  background-color: #e8e8e8;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 99em;
  margin: 0 10px 10px 0;
}

@media only screen and (max-width: 767px) {
  .projects-delivered__features li {
    border-radius: 10px;
    padding: 8px 10px;
  }
}

@media only screen and (max-width: 1599px) {
  .projects-delivered__item {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .projects-delivered__item {
    padding: 14px;
  }
}

.projects-delivered__item .icon::before {
  background-color: #ffffff;
}

.projects-delivered__item .icon p a {
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  .projects-delivered__item-text {
    margin-bottom: 0;
  }
}

.projects-delivered__item-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--clr-black);
}

@media only screen and (max-width: 991px) {
  .projects-delivered__item-icon {
    height: 48px;
    width: 48px;
  }
}

.projects-delivered__item-icon .icon {
  width: 24px;
  height: 24px;
}

.projects-delivered__item-icon.with--black-border {
  border-color: var(--clr-black);
}

.projects-delivered__item-icon .icon:before {
  background-color: var(--clr-black);
}

.projects-delivered__inner.front-end-new .we-serve__item-title .icon:before {
  background-color: var(--clr-black);
}

.projects-delivered__item p a {
  color: var(--clr-blue);
  text-decoration: underline;
}

.projects-delivered__item .link {
  text-decoration: underline;
  transition: all 0.3s ease;
}

.projects-delivered__item .link:focus,
.projects-delivered__item .link:hover {
  opacity: 0.5;
}

.projects-delivered__item ul {
  font-weight: 300;
}

@media only screen and (max-width: 991px) {
  .projects-delivered__item ul {
    padding-bottom: 8px;
  }
}

.projects-delivered__item ul li {
  display: flex;
  align-items: center;
  gap: 14px;
}

@media only screen and (max-width: 767px) {
  .projects-delivered__item ul li {
    gap: 10px;
    align-items: flex-start;
  }
}

.projects-delivered__item ul li .icon {
  flex: 0 0 24px;
}

.projects-delivered__item ul li + li {
  margin-top: 12px;
}

@media only screen and (max-width: 991px) {
  .projects-delivered__item ul li + li {
    margin-top: 10px;
  }
}

.projects-delivered.bg-mi-light {
  background-color: #fff;
}

.projects-delivered.bg-mi-light .service-slider__top h2,
.projects-delivered.bg-mi-light .service-slider__top p {
  color: var(--clr-black);
}

.projects-delivered.bg-mi-light .projects-delivered__item {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
}

.projects-delivered.bg-mi-light .projects-delivered__item h3,
.projects-delivered.bg-mi-light .projects-delivered__item p,
.projects-delivered.bg-mi-light .projects-delivered__item ul,
.projects-delivered.bg-mi-light .projects-delivered__item li {
  color: var(--clr-black);
}

.projects-delivered.bg-mi-light .projects-delivered__item .projects-delivered__item-icon {
  background-color: #fff;
  border: 1px solid var(--clr-black);
}

.projects-delivered.bg-mi-light .projects-delivered__item .projects-delivered__item-icon .material-symbols-rounded {
  color: var(--clr-black);
}

.projects-delivered.bg-mi-light .projects-delivered__slider-button-prev::before,
.projects-delivered.bg-mi-light .projects-delivered__slider-button-next::before {
  background-color: var(--clr-black);
}

.projects-delivered.bg-mi-light .projects-delivered__slider-button-prev,
.projects-delivered.bg-mi-light .projects-delivered__slider-button-next {
  border: 1px solid var(--clr-black);
}

.projects-delivered.bg-mi-light .projects-delivered__slider-button-prev:hover span,
.projects-delivered.bg-mi-light .projects-delivered__slider-button-next:hover span {
  color: var(--clr-white);
}

.projects-delivered.bg-mi-light .projects-delivered__slider-button-prev span,
.projects-delivered.bg-mi-light .projects-delivered__slider-button-next span {
  color: var(--clr-black);
}

.projects-delivered--light {
  background-color: #f0f0f0;
  color: #252b2b;
}

.projects-delivered--light .projects-delivered__item {
  background-color: #fff;
}

.projects-delivered--light .projects-delivered__slider-button-prev,
.projects-delivered--light .projects-delivered__slider-button-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #252b2b;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media only screen and (max-width: 1365px) {
  .projects-delivered--light .projects-delivered__slider-button-prev,
  .projects-delivered--light .projects-delivered__slider-button-next {
    height: 48px;
    width: 48px;
  }
}

.projects-delivered--light .projects-delivered__slider-button-prev::before,
.projects-delivered--light .projects-delivered__slider-button-next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #252b2b;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.projects-delivered--light .projects-delivered__slider-button-prev span,
.projects-delivered--light .projects-delivered__slider-button-next span {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
}

.projects-delivered--light .projects-delivered__slider-button-prev:hover,
.projects-delivered--light .projects-delivered__slider-button-next:hover {
  box-shadow: inset 0 0 0 1px #fff;
}

.projects-delivered--light .projects-delivered__slider-button-prev:hover::before,
.projects-delivered--light .projects-delivered__slider-button-next:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.projects-delivered--light .projects-delivered__slider-button-prev:hover span,
.projects-delivered--light .projects-delivered__slider-button-next:hover span {
  color: #ffffff;
}

.projects-delivered--light .projects-delivered__item-icon {
  background-color: #f0f0f0;
}

.projects-delivered--light .projects-delivered__item-icon .icon::before {
  background-color: #252b2b;
}

.projects-delivered__nav .projects-delivered__slider-button-prev::before,
.projects-delivered__nav .projects-delivered__slider-button-next::before {
  background-color: var(--clr-black);
}

.projects-delivered__nav .projects-delivered__slider-button-prev,
.projects-delivered__nav .projects-delivered__slider-button-next {
  border: 1px solid var(--clr-black);
}

.projects-delivered__nav .projects-delivered__slider-button-prev:hover span,
.projects-delivered__nav .projects-delivered__slider-button-next:hover span {
  color: var(--clr-white);
}

.projects-delivered__nav .projects-delivered__slider-button-prev span,
.projects-delivered__nav .projects-delivered__slider-button-next span {
  color: var(--clr-black);
}

.projects-delivered__nav .projects-delivered__slider-button-prev .icon::before,
.projects-delivered__nav .projects-delivered__slider-button-next .icon::before {
  background-color: var(--clr-black);
}

.projects-delivered__nav .projects-delivered__slider-button-prev:hover .icon::before,
.projects-delivered__nav .projects-delivered__slider-button-next:hover .icon::before {
  background-color: var(--clr-white);
}

.projects-delivered-arrows {
  display: inline-flex;
  gap: 10px;
  justify-content: end;
}

.services-new-hero-section .services-hero-section__wrapper {
  position: absolute;
  width: 650px;
  height: 650px;
  right: -150px;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(calc(-50% - 80px));
}

@media screen and (max-width: 1799px) {
  .services-new-hero-section .services-hero-section__wrapper {
    right: 0;
    text-align: right;
  }
}

@media screen and (max-width: 1440px) {
  .services-new-hero-section .services-hero-section__wrapper {
    width: 600px;
    height: 600px;
  }
}

@media screen and (max-width: 1365px) {
  .services-new-hero-section .services-hero-section__wrapper {
    width: 500px;
    height: 500px;
  }
}

@media screen and (max-width: 991px) {
  .services-new-hero-section .services-hero-section__wrapper {
    display: none;
  }
}

.services-new-hero-section.serviceheroimg .services-hero-section__wrapper {
  transform: translateY(calc(-50% - 40px));
}

@media screen and (max-width: 1799px) {
  .services-new-hero-section .services-hero-section__wrapper img {
    max-width: 80%;
  }
}

@media screen and (max-height: 820px) {
  .services-new-hero-section .services-hero-section__wrapper img {
    max-height: 80%;
  }
}

/*---- services-new-hero-section end Mi-122 ----*/

/*new hire ai developer page css starts here*/

/*sec-book-with-us css starts here*/

.sec-book-with-us:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-color: var(--clr-off-white);
}

.sec-book-with-us.without-bg:after {
  display: none;
}

.sec-book-with-us .inner-content {
  padding: 35px 35px 35px 60px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
  background-color: var(--clr-black);
  overflow: hidden;
}

@media only screen and (max-width: 1199px) {
  .sec-book-with-us .inner-content {
    padding: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content {
    padding: 20px;
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .sec-book-with-us .inner-content {
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .sec-book-with-us .inner-content {
    padding: 22px 15px 25px;
  }
}

.sec-book-with-us .inner-content:after {
  content: "";
  position: absolute;
  background: url("../img/hire-ai-page/bg-layer.webp") no-repeat center top;
  background-size: cover;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

@media only screen and (max-width: 575px) {
  .sec-book-with-us .inner-content:after {
    display: none;
  }
}

.sec-book-with-us .inner-content {
  position: relative;
  z-index: 9;
}

.sec-book-with-us .inner-content .book-wrapper {
  display: flex;
  align-items: end;
  flex: 0 0 auto;
  position: relative;
  z-index: 9;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper .img-wrap {
    display: none;
  }
}

.sec-book-with-us .inner-content .book-wrapper .img-wrap img {
  width: 253px;
  aspect-ratio: auto 253/282;
}

.sec-book-with-us .inner-content .book-wrapper .content-list {
  margin-left: -90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list {
    /* margin-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; */
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us a.btn-lightbrown.mt-4.mt-lg-2 {
    margin-top: 0px !important;
  }
}

.sec-book-with-us .inner-content .book-wrapper .content-list li {
  border: 1px solid var(--clr-black);
  position: relative;
  padding: 9px 12px;
  border-radius: 99em;
  display: flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list li {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list li {
    padding: 8px;
    width: max-content;
    padding-inline: 15px 18px;
  }
}

.sec-book-with-us .inner-content .book-wrapper .content-list li:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(44px);
  border-radius: 99em;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li:first-child {
  margin-left: 60px;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li:nth-child(2) {
  margin-left: 40px;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li:nth-child(3) {
  margin-left: 20px;
}

@media only screen and (max-width: 991px) {
  .sec-book-with-us .inner-content .book-wrapper .content-list li:first-child,
  .sec-book-with-us .inner-content .book-wrapper .content-list li:nth-child(2),
  .sec-book-with-us .inner-content .book-wrapper .content-list li:nth-child(3) {
    margin: 0;
  }
}

.sec-book-with-us .inner-content .book-wrapper .content-list li span {
  position: relative;
  z-index: 2;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li .small-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.sec-book-with-us .inner-content .book-wrapper .content-list li .small-icon img {
  width: 15px;
  aspect-ratio: auto 15/15;
}

/*sec-book-with-us css ends here*/

/*our-team-slider css starts here*/

.our-team-slider {
  overflow: hidden;
}

.our-team-slider .swiper-slide {
  height: auto;
}

.our-team-slider .card-outer {
  height: 100%;
}

.our-team-slider .card-outer .card-main {
  height: 100%;
  padding: 20px 20px 30px 20px;
  background-color: var(--clr-off-grey);
  text-align: left;
}

@media only screen and (max-width: 575px) {
  .our-team-slider .card-outer .card-main {
    padding: 15px;
  }
}

.our-team-slider .card-outer .card-main .card-images {
  height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1499px) {
  .our-team-slider .card-outer .card-main .card-images {
    height: 220px;
  }
}

@media only screen and (max-width: 767px) {
  .our-team-slider .card-outer .card-main .card-images {
    height: 200px;
  }
}

@media only screen and (max-width: 575px) {
  .our-team-slider .card-outer .card-main .card-images {
    height: 220px;
  }
}

@media only screen and (max-width: 480px) {
  .our-team-slider .card-outer .card-main .card-images {
    height: 200px;
  }
}

@media only screen and (max-width: 375px) {
  .our-team-slider .card-outer .card-main .card-images {
    height: 180px;
  }
}

.our-team-slider .card-outer .card-main .card-images img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1499px) {
  .our-team-slider .card-outer .card-main .card-images img {
    height: 220px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 767px) {
  .our-team-slider .card-outer .card-main .card-images img {
    height: 200px;
  }
}

@media only screen and (max-width: 575px) {
  .our-team-slider .card-outer .card-main .card-images img {
    height: 220px;
  }
}

@media only screen and (max-width: 480px) {
  .our-team-slider .card-outer .card-main .card-images img {
    height: 200px;
  }
}

@media only screen and (max-width: 375px) {
  .our-team-slider .card-outer .card-main .card-images img {
    height: 180px;
  }
}

.our-team-slider .card-outer .card-main .card-content {
  padding: 20px 10px 0 10px;
  height: calc(100% - 250px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 1499px) {
  .our-team-slider .card-outer .card-main .card-content {
    height: calc(100% - 220px);
    padding: 20px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .our-team-slider .card-outer .card-main .card-content {
    height: calc(100% - 200px);
  }
}

@media only screen and (max-width: 575px) {
  .our-team-slider .card-outer .card-main .card-content {
    height: calc(100% - 220px);
  }
}

@media only screen and (max-width: 480px) {
  .our-team-slider .card-outer .card-main .card-content {
    height: calc(100% - 200px);
  }
}

@media only screen and (max-width: 375px) {
  .our-team-slider .card-outer .card-main .card-content {
    height: calc(100% - 180px);
  }
}

.our-team-slider .card-outer .card-main .card-content .serviceteam-list {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
  gap: 8px;
  width: calc(100% + 30px);
  scrollbar-width: thin;
  scrollbar-color: rgba(33, 37, 41, 0.5) var(--clr-dark-grey);
}

@media only screen and (max-width: 1499px) {
  .our-team-slider .card-outer .card-main .card-content .serviceteam-list {
    width: calc(100% + 20px);
  }
}

@media only screen and (max-width: 767px) {
  .our-team-slider .card-outer .card-main .card-content .serviceteam-list {
    display: none;
  }
}

.our-team-slider .card-outer .card-main .card-content .serviceteam-list li {
  padding: 9px 14px;
  background-color: var(--clr-dark-grey);
  border-radius: 30px;
  margin-bottom: 6px;
}

.our-team-slider .card-outer .card-main .card-content .team-info {
  margin: 20px 0 30px;
  text-align: left;
}

@media only screen and (max-width: 1499px) {
  .our-team-slider .card-outer .card-main .card-content .team-info {
    margin: 15px 0;
  }
}

.our-team-slider .card-outer .card-main .card-content .team-info .teamcompo-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
}

@media only screen and (max-width: 1499px) {
  .our-team-slider .card-outer .card-main .card-content .team-info .teamcompo-list li {
    align-items: start;
  }
}

.our-team-slider .card-outer .card-main .card-content .team-info .teamcompo-list li .small-text {
  padding-left: 5px;
}

.our-team-slider .card-outer .card-main .card-content .team-title-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.our-team-slider .card-outer .card-main .card-content .bottom-part {
  gap: 10px;
}

@media only screen and (max-width: 375px) {
  .our-team-slider .card-outer .card-main .card-content .bottom-part {
    display: block !important;
  }
}

.our-team-slider .card-outer .card-main .card-content .bottom-part .team-icon-list {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .our-team-slider .card-outer .card-main .card-content .bottom-part .team-icon-list {
    display: none;
  }
}

.our-team-slider .card-outer .card-main .card-content .bottom-part .team-icon-list li {
  position: relative;
}

.our-team-slider .card-outer .card-main .card-content .bottom-part .team-icon-list li .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  border: 2px solid var(--clr-off-grey);
  box-sizing: border-box;
}

@media only screen and (max-width: 1199px) {
  .our-team-slider .card-outer .card-main .card-content .bottom-part .team-icon-list li .icon-box {
    width: 44px;
    height: 44px;
  }
}

.our-team-slider .card-outer .card-main .card-content .bottom-part .team-icon-list li .icon-box img {
  width: 50px;
  aspect-ratio: auto 50/50;
  height: auto;
}

.our-team-slider .card-outer .card-main .card-content .bottom-part .team-icon-list li:nth-child(2) {
  margin-left: -18px;
  z-index: 1;
}

.our-team-slider .card-outer .card-main .card-content .bottom-part .team-icon-list li:nth-child(3) {
  margin-left: -18px;
  z-index: 2;
}

.our-team-slider .card-outer .card-main .card-content .bottom-part .details-btn {
  background-color: transparent;
}

@media only screen and (min-width: 768px) and (max-width: 1499px) {
  .our-team-slider .card-outer .card-main .card-content .bottom-part .details-btn {
    padding: 8px 18px;
    gap: 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .our-team-slider .card-outer .card-main .card-content .bottom-part .details-btn {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 1499px) {
  .our-team-slider .card-outer .card-main .card-content .bottom-part .details-btn .material-symbols-rounded {
    font-size: 20px;
  }
}

.our-team-slider .swipe-btn-outer {
  display: flex;
  justify-content: end;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  margin-top: 30px;
}

.our-team-slider .swipe-btn-outer .com-btn {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-black);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  top: 10px;
  left: auto;
  right: auto;
}

@media screen and (max-width: 767px) {
  .our-team-slider .swipe-btn-outer .com-btn {
    height: 48px;
    width: 48px;
  }

  .our-team-slider .swipe-btn-outer {
    margin-top: 20px;
  }
}

.our-team-slider .swipe-btn-outer .com-btn span {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-black);
}

.our-team-slider .swipe-btn-outer .com-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-black);
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.our-team-slider .swipe-btn-outer .com-btn:after {
  display: none;
}

.our-team-slider .swipe-btn-outer .com-btn:hover span {
  color: var(--clr-white);
  position: relative;
}

.our-team-slider .swipe-btn-outer .com-btn:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

/*our-team-slider css ends here*/

/*our-team-slider css starts here*/

.sec-our-industries .content-wrap a {
  color: var(--clr-blue);
  text-decoration: underline;
}

.sec-our-industries .our-industry-slider {
  padding: 0 15px;
}

.sec-our-industries .swiper-slide {
  height: auto;
  width: 500px;
}

@media only screen and (max-width: 1599px) {
  .sec-our-industries .swiper-slide {
    width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-our-industries .swiper-slide {
    width: 90%;
  }
}

.sec-our-industries .ind-item {
  background-color: #252b2b;
  padding: 30px;
  height: 100%;
  border: 1px solid var(--clr-dark-black);
}

@media only screen and (max-width: 1599px) {
  .sec-our-industries .ind-item {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-our-industries .ind-item {
    padding: 14px;
  }
}
.sec-our-industries.offgrey-slider .ind-item {
  background-color: var(--clr-off-grey);
  border: none;
}
.sec-our-industries.offgrey-slider .ind-item .link-black .icon:before {
  background-color: var(--clr-black);
}

.sec-our-industries.offgrey-slider .ind-item .link-white .icon:before {
  background-color: var(--clr-black);
}

.sec-our-industries.newbg-grey .ind-item {
  background-color: var(--clr-off-white);
  border: none;
}

.sec-our-industries.newbg-grey .ind-item .link-black .icon:before {
  background-color: var(--clr-black);
}

.sec-our-industries.newbg-grey .ind-item .ind-icon {
  background-color: var(--clr-white);
  border: 1px solid var(--clr-black);
}

.sec-our-industries.newbg-grey .ind-item .ind-icon .icon:before {
  background-color: var(--clr-black);
}

.sec-our-industries .on-demand-app-page {
  background-color: #f0f0f0;
  padding: 30px;
  height: 100%;
  border: 1px solid #e3e3e3;
}

@media only screen and (max-width: 1599px) {
  .sec-our-industries .on-demand-app-page {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-our-industries .on-demand-app-page {
    padding: 14px;
  }
}

.on-demand-main .on-demand-app-page .icon::before {
  background-color: #000 !important;
}

.on-demand-main .on-demand-app-page .icon.icon-clr-white::before {
  background-color: #fff !important;
}

.sec-our-industries .ind-item .icon-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 575px) {
  .sec-our-industries .ind-item .icon-wrap {
    gap: 15px;
  }
}

.sec-our-industries .ind-item .ind-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-dark-black);
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .ind-item .ind-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }
}
.sec-our-industries .ind-item .icon {
  width: 24px;
  height: 24px;
}

.sec-our-industries .ind-item .icon.softwa {
  width: 20px;
  height: 20px;
}
@media only screen and (max-width: 767px) {
  .sec-our-industries .ind-item .icon.softwa {
    width: 18px;
    height: 18px;
  }
}
.sec-our-industries .ind-item .icon::before {
  background-color: #ffffff;
}

.sec-our-industries .ind-item ul {
  font-weight: 300;
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .ind-item ul {
    padding-bottom: 8px;
  }
}

.sec-our-industries .ind-item ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

@media only screen and (max-width: 767px) {
  .sec-our-industries .ind-item ul li {
    gap: 10px;
    align-items: flex-start;
  }
}

.sec-our-industries .ind-item ul li + li {
  margin-top: 12px;
}

.sec-our-industries .ind-item ul li span {
  position: relative;
  top: 3px;
}

@media only screen and (max-width: 1365px) {
  .sec-our-industries .ind-item ul li span {
    top: 2px;
  }
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .ind-item ul li span {
    top: 0;
  }
}

.sec-our-industries .ind-item ul li .icon {
  position: relative;
  top: 3px;
  flex: 0 0 auto;
}

@media only screen and (max-width: 1365px) {
  .sec-our-industries .ind-item ul li .icon {
    top: 2px;
  }
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .ind-item ul li .icon {
    top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .sec-our-industries .ind-item ul li .icon {
    top: 2px;
    padding-left: 9px;
  }
}
.sec-our-industries .we-serve.bg-white .ind-item ul li .icon {
  width: 24px;
  height: 24px;
}
.sec-our-industries .we-serve.bg-white .ind-item ul li .icon:before {
  background-color: #192020;
}
.sec-our-industries .we-serve.bg-white .powerful-item ul li .icon {
  width: 24px;
  height: 24px;
}
.sec-our-industries .we-serve.bg-white .powerful-item ul li .icon:before {
  background-color: #192020;
}
.sec-our-industries .indus-nav-outer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  align-items: center;
}

@media only screen and (min-width: 1500px) {
  .sec-our-industries .indus-nav-outer {
    max-width: 1446px;
  }
}

@media only screen and (max-width: 375px) {
  .sec-our-industries .indus-nav-outer {
    flex-direction: column;
    align-items: normal;
    gap: 20px;
  }
}

.sec-our-industries .indus-nav-outer.cross-platform {
  align-items: center;
}

@media only screen and (max-width: 575px) {
  .sec-our-industries .indus-nav-outer.cross-platform {
    display: block;
  }
}

@media only screen and (max-width: 575px) {
  .sec-our-industries .indus-nav-outer.cross-platform .projects-delivered__nav {
    justify-content: end;
    margin-top: 20px !important;
  }
}

.sec-our-industries .indus-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
  margin-right: 0.75rem;
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .indus-nav {
    margin-right: 0;
  }
}

.sec-our-industries .indus-nav .indus-btn-prev,
.sec-our-industries .indus-nav .indus-btn-next {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

.sec-our-industries.offgrey-slider .indus-nav .indus-btn-prev,
.sec-our-industries.offgrey-slider .indus-nav .indus-btn-next {
  border: 1px solid var(--clr-black);
}

.sec-our-industries.newbg-grey .indus-nav .indus-btn-prev,
.sec-our-industries.newbg-grey .indus-nav .indus-btn-next {
  border: 1px solid var(--clr-black);
}

.sec-our-industries .we-serve--white .indus-nav .indus-btn-prev,
.sec-our-industries .we-serve--white .indus-nav .indus-btn-next {
  border: 1px solid var(--clr-dark-black);
}

@media only screen and (max-width: 1365px) {
  .sec-our-industries .indus-nav .indus-btn-prev,
  .sec-our-industries .indus-nav .indus-btn-next {
    height: 48px;
    width: 48px;
  }
}

.sec-our-industries .indus-nav .indus-btn-prev:hover,
.sec-our-industries .indus-nav .indus-btn-next:hover {
  box-shadow: inset 0 0 0 1px #fff;
}
.sec-our-industries .indus-nav .indus-btn-prev:hover span .icon-slider-west::before {
  background-color: var(--clr-black);
}

.we-serve__slider-button-prev:hover span .icon-slider-west::before {
  background-color: var(--clr-black);
}
.sec-our-industries .indus-nav .indus-btn-next:hover span .icon-slider-east::before {
  background-color: var(--clr-black);
}

.we-serve__slider-button-next:hover span .icon-slider-east::before {
  background-color: var(--clr-black);
}

.sec-our-industries .indus-nav .indus-btn-prev:before,
.sec-our-industries .indus-nav .indus-btn-next:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .sec-our-industries .indus-nav .indus-btn-prev:before,
  .sec-our-industries .indus-nav .indus-btn-next:before {
    transition: none;
  }
}

.sec-our-industries .we-serve--white .indus-nav .indus-btn-prev:before,
.sec-our-industries .we-serve--white .indus-nav .indus-btn-next:before {
  background: var(--clr-black);
}

.sec-our-industries .indus-nav .indus-btn-prev:hover:before,
.sec-our-industries .indus-nav .indus-btn-next:hover:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.sec-our-industries.newbg-grey .indus-nav .indus-btn-prev:before,
.sec-our-industries.newbg-grey .indus-nav .indus-btn-next:before {
  background-color: var(--clr-black);
}

.sec-our-industries .indus-nav .indus-btn-prev span,
.sec-our-industries .indus-nav .indus-btn-prev span {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
}

@media only screen and (max-width: 1199px) {
  .sec-our-industries .indus-nav .indus-btn-prev span,
  .sec-our-industries .indus-nav .indus-btn-prev span {
    transition: none;
  }
}

.sec-our-industries .indus-nav .indus-btn-prev .icon,
.sec-our-industries .indus-nav .indus-btn-next .icon {
  z-index: 9;
  position: relative;
  transition: color 0.3s;
  width: 24px;
  height: 24px;
}

@media only screen and (max-width: 1199px) {
  .sec-our-industries .indus-nav .indus-btn-prev .icon,
  .sec-our-industries .indus-nav .indus-btn-next .icon {
    transition: none;
  }
}

.sec-our-industries .indus-nav .indus-btn-prev .icon:before,
.sec-our-industries .indus-nav .indus-btn-next .icon:before {
  background-color: var(--clr-white);
}

.sec-our-industries.newbg-grey .indus-nav .indus-btn-prev span,
.sec-our-industries.newbg-grey .indus-nav .indus-btn-next span {
  color: var(--clr-black);
}

.sec-our-industries.offgrey-slider .indus-nav .indus-btn-prev .icon:before,
.sec-our-industries.offgrey-slider .indus-nav .indus-btn-next .icon:before {
  background-color: var(--clr-black);
}

.sec-our-industries.offgrey-slider .indus-nav .indus-btn-prev:hover .icon:before,
.sec-our-industries.offgrey-slider .indus-nav .indus-btn-next:hover .icon:before {
  background-color: var(--clr-white);
}

.sec-our-industries.newbg-grey .indus-nav .indus-btn-prev .icon:before,
.sec-our-industries.newbg-grey .indus-nav .indus-btn-next .icon:before {
  background-color: var(--clr-black);
}

.sec-our-industries.newbg-grey .indus-nav .indus-btn-prev:hover .icon:before,
.sec-our-industries.newbg-grey .indus-nav .indus-btn-next:hover .icon:before {
  background-color: var(--clr-white);
}

.sec-our-industries .indus-nav .indus-btn-prev:hover span,
.sec-our-industries .indus-nav .indus-btn-next:hover span {
  color: #252b2b;
  position: relative;
  z-index: 2;
}

.sec-our-industries .indus-nav .indus-btn-prev:hover .icon:before,
.sec-our-industries .indus-nav .indus-btn-next:hover .icon:before {
  background-color: #252b2b;
  position: relative;
  z-index: 2;
}

.sec-our-industries.newbg-grey .indus-nav .indus-btn-prev:hover span,
.sec-our-industries.newbg-grey .indus-nav .indus-btn-next:hover span {
  color: var(--clr-white);
}

.sec-our-industries .we-serve--white .indus-nav .indus-btn-prev:hover span,
.sec-our-industries .we-serve--white .indus-nav .indus-btn-next:hover span {
  color: #fff;
  position: relative;
  z-index: 2;
}

.sec-our-industries.offgrey-slider .indus-nav .indus-btn-prev span,
.sec-our-industries.offgrey-slider .indus-nav .indus-btn-next span {
  color: var(--clr-black);
}

.sec-our-industries.offgrey-slider .indus-nav .indus-btn-prev:before,
.sec-our-industries.offgrey-slider .indus-nav .indus-btn-next:before {
  background-color: var(--clr-black);
}
.sec-our-industries.offgrey-slider .indus-nav .indus-btn-prev:hover span,
.sec-our-industries.offgrey-slider .indus-nav .indus-btn-next:hover span {
  color: #fff;
  position: relative;
  z-index: 2;
}

.sec-our-industries .powerful-item {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
  padding: 30px;
  height: 100%;
}

@media only screen and (max-width: 1599px) {
  .sec-our-industries .powerful-item {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-our-industries .powerful-item {
    padding: 14px;
  }
}

.sec-our-industries .powerful-item a {
  color: #ed184f;
  text-decoration: underline;
}

.sec-our-industries .powerful-item .icon-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 575px) {
  .sec-our-industries .powerful-item .icon-wrap {
    gap: 15px;
  }
}

.sec-our-industries .powerful-item .ind-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-dark-black);
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .powerful-item .ind-icon {
    width: 48px;
    height: 48px;
  }
}

.sec-our-industries .ind-item .icon::before {
  background-color: #ffffff;
}

.sec-our-industries .powerful-item ul {
  font-weight: 300;
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .powerful-item ul {
    padding-bottom: 8px;
  }
}

.sec-our-industries .powerful-item ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

@media only screen and (max-width: 767px) {
  .sec-our-industries .powerful-item ul li {
    gap: 10px;
    align-items: flex-start;
  }
}

.sec-our-industries .powerful-item ul li + li {
  margin-top: 12px;
}

.sec-our-industries .powerful-item ul li span {
  position: relative;
  top: 3px;
}

@media only screen and (max-width: 1365px) {
  .sec-our-industries .powerful-item ul li span {
    top: 2px;
  }
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .powerful-item ul li span {
    top: 0;
  }
}

.sec-our-industries .powerful-item .powerful-icon {
  width: max-content;
  display: flex;
  border-radius: 30px;
  align-items: center;
  padding: 6px 10px 6px 4px;
}

.sec-our-industries .powerful-item .powerful-icon span {
  margin-left: 5px;
}

.sec-our-industries .menu-link-box-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 24px 1fr;
  grid-column-gap: 8px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .sec-our-industries .menu-link-box-grid {
    grid-column-gap: 6px;
  }
}
.menu-arrow-icon {
  margin-top: 3px;
}
@media only screen and (max-width: 767px) {
  .menu-arrow-icon {
    margin-top: 4px;
  }
}
.icon-check-circle-team {
  width: 20px;
  height: 20px;
}
.icon-check-circle-team::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M8.58075 12.1462L6.25765 9.82308C6.1192 9.68461 5.94517 9.61378 5.73555 9.61058C5.52593 9.60736 5.34869 9.67819 5.20382 9.82308C5.05896 9.96794 4.98653 10.1436 4.98653 10.35C4.98653 10.5564 5.05896 10.732 5.20382 10.8769L7.94805 13.6211C8.12882 13.8019 8.33972 13.8923 8.58075 13.8923C8.82177 13.8923 9.03266 13.8019 9.21343 13.6211L14.7769 8.05765C14.9153 7.9192 14.9862 7.74517 14.9894 7.53555C14.9926 7.32593 14.9218 7.14869 14.7769 7.00383C14.632 6.85896 14.4564 6.78653 14.25 6.78653C14.0436 6.78653 13.8679 6.85896 13.7231 7.00383L8.58075 12.1462ZM10.0016 19.5C8.68772 19.5 7.45268 19.2506 6.29655 18.752C5.1404 18.2533 4.13472 17.5765 3.2795 16.7217C2.42427 15.8669 1.74721 14.8616 1.24833 13.706C0.749442 12.5504 0.5 11.3156 0.5 10.0017C0.5 8.68772 0.749334 7.45268 1.248 6.29655C1.74667 5.1404 2.42342 4.13472 3.27825 3.2795C4.1331 2.42427 5.13834 1.74721 6.29398 1.24833C7.44959 0.749443 8.68437 0.5 9.9983 0.5C11.3122 0.5 12.5473 0.749334 13.7034 1.248C14.8596 1.74667 15.8652 2.42342 16.7205 3.27825C17.5757 4.1331 18.2527 5.13834 18.7516 6.29398C19.2505 7.44959 19.5 8.68437 19.5 9.9983C19.5 11.3122 19.2506 12.5473 18.752 13.7034C18.2533 14.8596 17.5765 15.8652 16.7217 16.7205C15.8669 17.5757 14.8616 18.2527 13.706 18.7516C12.5504 19.2505 11.3156 19.5 10.0016 19.5ZM9.99998 18C12.2333 18 14.125 17.225 15.675 15.675C17.225 14.125 18 12.2333 18 9.99998C18 7.76664 17.225 5.87498 15.675 4.32498C14.125 2.77498 12.2333 1.99998 9.99998 1.99998C7.76664 1.99998 5.87498 2.77498 4.32498 4.32498C2.77498 5.87498 1.99998 7.76664 1.99998 9.99998C1.99998 12.2333 2.77498 14.125 4.32498 15.675C5.87498 17.225 7.76664 18 9.99998 18Z' fill='%23555555'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M8.58075 12.1462L6.25765 9.82308C6.1192 9.68461 5.94517 9.61378 5.73555 9.61058C5.52593 9.60736 5.34869 9.67819 5.20382 9.82308C5.05896 9.96794 4.98653 10.1436 4.98653 10.35C4.98653 10.5564 5.05896 10.732 5.20382 10.8769L7.94805 13.6211C8.12882 13.8019 8.33972 13.8923 8.58075 13.8923C8.82177 13.8923 9.03266 13.8019 9.21343 13.6211L14.7769 8.05765C14.9153 7.9192 14.9862 7.74517 14.9894 7.53555C14.9926 7.32593 14.9218 7.14869 14.7769 7.00383C14.632 6.85896 14.4564 6.78653 14.25 6.78653C14.0436 6.78653 13.8679 6.85896 13.7231 7.00383L8.58075 12.1462ZM10.0016 19.5C8.68772 19.5 7.45268 19.2506 6.29655 18.752C5.1404 18.2533 4.13472 17.5765 3.2795 16.7217C2.42427 15.8669 1.74721 14.8616 1.24833 13.706C0.749442 12.5504 0.5 11.3156 0.5 10.0017C0.5 8.68772 0.749334 7.45268 1.248 6.29655C1.74667 5.1404 2.42342 4.13472 3.27825 3.2795C4.1331 2.42427 5.13834 1.74721 6.29398 1.24833C7.44959 0.749443 8.68437 0.5 9.9983 0.5C11.3122 0.5 12.5473 0.749334 13.7034 1.248C14.8596 1.74667 15.8652 2.42342 16.7205 3.27825C17.5757 4.1331 18.2527 5.13834 18.7516 6.29398C19.2505 7.44959 19.5 8.68437 19.5 9.9983C19.5 11.3122 19.2506 12.5473 18.752 13.7034C18.2533 14.8596 17.5765 15.8652 16.7217 16.7205C15.8669 17.5757 14.8616 18.2527 13.706 18.7516C12.5504 19.2505 11.3156 19.5 10.0016 19.5ZM9.99998 18C12.2333 18 14.125 17.225 15.675 15.675C17.225 14.125 18 12.2333 18 9.99998C18 7.76664 17.225 5.87498 15.675 4.32498C14.125 2.77498 12.2333 1.99998 9.99998 1.99998C7.76664 1.99998 5.87498 2.77498 4.32498 4.32498C2.77498 5.87498 1.99998 7.76664 1.99998 9.99998C1.99998 12.2333 2.77498 14.125 4.32498 15.675C5.87498 17.225 7.76664 18 9.99998 18Z' fill='%23555555'/%3E%3C/svg%3E");
}

/*our-team-slider css ends here*/

/*section-hiring-new-setps css starts here*/

@media only screen and (max-width: 991px) {
  .section-hiring-new-setps .leftside-wrap .content-wrap .main-title {
    max-width: none !important;
  }
}

.section-hiring-new-setps .what-we-provide ul .link-dashed {
  padding: 10px 12px;
  border: 1px dashed rgba(25, 32, 33, 0.2);
}

@media only screen and (max-width: 767px) {
  .section-hiring-new-setps .what-we-provide ul .link-dashed {
    border-radius: 16px;
    align-items: flex-start;
    text-align: left;
    padding: 6px;
  }
}

.section-hiring-new-setps .what-we-provide ul .link-dashed:hover {
  background-color: var(--clr-black) !important;
}

@media only screen and (max-width: 991px) {
  .easysteps-wrap {
    max-width: 650px;
  }
}

.easysteps-wrap .hiring-new-steps {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  grid-row-gap: 10px;
}

.easysteps-wrap .hiring-new-steps .steps-new-main {
  padding: 30px;
  display: flex;
  align-items: start;
  gap: 30px;
  border: 1px solid #e6e6e6;
}

@media only screen and (max-width: 1199px) {
  .easysteps-wrap .hiring-new-steps .steps-new-main {
    padding: 20px;
    gap: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .easysteps-wrap .hiring-new-steps .steps-new-main {
    padding: 15px;
    gap: 15px;
  }
}

@media only screen and (max-width: 375px) {
  .easysteps-wrap .hiring-new-steps .steps-new-main {
    display: block;
  }
}

.easysteps-wrap .hiring-new-steps .steps-new-main .process-icons {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(25, 32, 32);
  -o-border-image: initial;
  border-image: initial;
  flex: 0 0 auto;
  position: relative;
  background-color: var(--clr-white);
  transition: all 0.3s ease;
}

@media only screen and (max-width: 575px) {
  .easysteps-wrap .hiring-new-steps .steps-new-main .process-icons {
    width: 45px;
    height: 45px;
    overflow: hidden;
  }
}

@media only screen and (max-width: 375px) {
  .easysteps-wrap .hiring-new-steps .steps-new-main .process-icons {
    margin-bottom: 20px;
  }
}

.easysteps-wrap .hiring-new-steps .steps-new-main:hover .process-icons {
  background-color: var(--clr-light-brown);
  transition: all 0.3s ease;
}

.easysteps-wrap .hiring-new-steps .steps-new-main .process-icons span {
  position: relative;
  z-index: 2;
}

.easysteps-wrap .hiring-new-steps .steps-new-main .process-icons:before {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  position: absolute;
  border-radius: 99em;
}

.easysteps-wrap .hiring-new-steps .steps-new-main:hover .process-icons:before {
  background-color: var(--clr-light-brown);
  transition: all 0.3s ease;
}

.easysteps-wrap .hiring-new-steps .steps-new-main .process-icons:after {
  content: "";
  top: 54px;
  left: 26px;
  height: calc(100% + 100px);
  width: 1px;
  background-color: #000000;
  position: absolute;
  z-index: 0;
}

@media only screen and (max-width: 991px) {
  .easysteps-wrap .hiring-new-steps .steps-new-main .process-icons:after {
    height: calc(100% + 59px);
  }
}

@media only screen and (max-width: 575px) {
  .easysteps-wrap .hiring-new-steps .steps-new-main .process-icons:after {
    display: none;
  }
}

.easysteps-wrap .hiring-new-steps .steps-new-main:last-child .process-icons:after {
  display: none;
}

/*section-hiring-new-setps css ends here*/

/* Basic styling for the select dropdown */

/*new hire ai developer page css ends here*/

/*.sec-our-industries .powerful-item css starts here*/

.sec-our-industries .powerful-item {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
  padding: 30px;
  height: 100%;
}

@media only screen and (max-width: 1599px) {
  .sec-our-industries .powerful-item {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-our-industries .powerful-item {
    padding: 14px;
  }
}

.sec-our-industries .powerful-item .icon-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media only screen and (max-width: 575px) {
  .sec-our-industries .powerful-item .icon-wrap {
    gap: 15px;
  }
}

.sec-our-industries .powerful-item .ind-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-dark-black);
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .powerful-item .ind-icon {
    width: 48px;
    height: 48px;
  }
}

.sec-our-industries .ind-item .icon::before {
  background-color: #ffffff;
}

.sec-our-industries .powerful-item ul {
  font-weight: 300;
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .powerful-item ul {
    padding-bottom: 8px;
  }
}

.sec-our-industries .powerful-item ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

@media only screen and (max-width: 767px) {
  .sec-our-industries .powerful-item ul li {
    gap: 10px;
    align-items: flex-start;
  }
}

.sec-our-industries .powerful-item ul li + li {
  margin-top: 12px;
}

.sec-our-industries .powerful-item ul li span {
  position: relative;
  top: 3px;
}

@media only screen and (max-width: 1365px) {
  .sec-our-industries .powerful-item ul li span {
    top: 2px;
  }
}

@media only screen and (max-width: 991px) {
  .sec-our-industries .powerful-item ul li span {
    top: 0;
  }
}

.sec-our-industries .powerful-item .powerful-icon {
  width: max-content;
  display: flex;
  border-radius: 30px;
  align-items: center;
  padding: 6px 10px 6px 4px;
}

.sec-our-industries .powerful-item .powerful-icon span {
  margin-left: 5px;
}

/*.sec-our-industries .powerful-item css ends here*/
/*new hire hero inquiry section starts here*/

.hire-hero-outer {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hire-new-hero-inquiry {
  box-shadow: 0 10px 40px -10px rgba(25, 32, 32, 0.2);
  padding: 30px 25px;
  max-width: 620px;
  margin-left: auto;
}

@media screen and (max-width: 1199px) {
  .hire-new-hero-inquiry {
    padding: 25px 20px;
  }
}

@media screen and (max-width: 767px) {
  .hire-new-hero-inquiry {
    padding: 25px 15px;
    max-width: none;
  }
}

.hire-new-hero-inquiry .form-item {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .hire-new-hero-inquiry .form-item {
    margin-top: 15px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1699px) {
  .hire-new-hero-section .services-new-hero-section {
    height: 100%;
  }

  .hire-new-hero-inquiry {
    padding: 20px;
  }
}

.hire-new-hero-inquiry .form-item input {
  border: 1px solid rgba(25, 32, 32, 0.2) !important;
  border-radius: 10px;
  font-size: 16px;
  color: #192020;
  padding: 10px 15px;
  background-color: var(--clr-white);
}

.hire-new-hero-inquiry .form-item input::placeholder {
  font-size: 16px;
  color: #192020;
  padding: 0;
}

.hire-new-hero-inquiry .SumoSelect.open {
  width: 125px;
  border-radius: 99em;
}

@media screen and (max-width: 1199px) {
  .hire-new-hero-inquiry .SumoSelect.open {
    width: 115px;
  }
}

@media screen and (max-width: 767px) {
  .hire-new-hero-inquiry .SumoSelect.open {
    width: 100px;
  }
}

.hire-new-hero-inquiry .search-txt {
  padding: 0 !important;
}

.hire-new-hero-inquiry .SumoSelect > .optWrapper {
  box-shadow: none;
}

.hire-new-hero-inquiry .SumoSelect > .CaptionCont > span.placeholder {
  background-color: var(--clr-white);
  opacity: 1;
  padding: 10px 15px 10px 5px;
  border-radius: 10px;
}

.hire-new-hero-inquiry .SumoSelect > .CaptionCont {
  padding: 10px;
  background-color: var(--clr-white);
  border-radius: 10px;
  border: 1px solid rgba(25, 32, 32, 0.2);
}

.hire-new-hero-inquiry .SumoSelect > .CaptionCont:focus {
  border: none;
}

.hire-new-hero-inquiry .SumoSelect.open .search-txt {
  border-bottom: none;
  padding-left: 15px !important;
  border-radius: 99em;
  border: none !important;
}

.hire-new-hero-inquiry .form-control-textarea {
  border: 1px solid rgba(25, 32, 32, 0.2) !important;
  border-radius: 10px;
  font-size: 16px;
  color: #192020;
  padding: 10px 15px;
  background-color: var(--clr-white);
}

.hire-new-hero-inquiry .form-item input::placeholder,
.hire-new-hero-inquiry .form-control-textarea::placeholder {
  font-size: 16px;
  color: #192020;
}

.hire-new-hero-inquiry .country-wrap {
  display: flex;
}

.hire-new-hero-inquiry .country-wrap .country-code > * {
  width: 125px;
}

@media screen and (max-width: 991px) {
  .latest-ppc-hero-inquiry .country-wrap .country-code > * {
    width: 100px;
  }
}

.hire-new-hero-inquiry .country-wrap .country-number {
  width: 100%;
  position: relative;
  border-radius: 99em;
  margin-left: 30px;
}

@media only screen and (max-width: 1199px) {
  .hire-new-hero-inquiry .country-wrap .country-number {
    margin-left: 10px;
  }
}

.hire-new-hero-inquiry .SumoSelect {
  width: 125px;
}

@media only screen and (max-width: 767px) {
  .hire-new-hero-inquiry .SumoSelect {
    width: 100px;
  }
}

.hire-new-hero-inquiry .SumoSelect > .CaptionCont > span {
  color: var(--clr-black);
  border-radius: 99em;
}

.hire-new-hero-inquiry .SumoSelect.open .search-txt {
  color: var(--clr-black);
}

@media only screen and (max-width: 767px) {
  .hire-new-hero-inquiry .SumoSelect.open .search-txt {
    height: 44px;
  }
}

.hire-new-hero-inquiry .country-list.collaborate-list .SumoSelect {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .hire-new-hero-inquiry .country-wrap .country-number .form-group .form-control {
    padding: 8px 15px;
  }
}

.hire-new-hero-inquiry .SumoSelect > .CaptionCont > label > i {
  background: url("../img/down-arrow-black.svg");
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8;
}

/*new hire hero inquiry section ends here*/

/*---latest-ppc-testimonial start --*/
.latest-client-testimonial-section {
  position: relative;
}

@media screen and (min-width: 1920px) and (min-height: 1050px) {
  .latest-client-testimonial-section:before {
    content: "";
    bottom: 0;
    height: 86px;
    width: 100%;
    position: absolute;
    background-color: #f0f0f0;
  }

  .latest-client-testimonial-section .container-fluid {
    max-width: 1470px;
    border-radius: 24px;
    overflow: hidden;
    margin: -84px auto 0;
    position: relative;
  }
}

.latest-ppc-client-testimonial::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(240 240 240);
  z-index: -1;
}

.latest-client-testimonial {
  margin: 0 auto;
}

.latest-client-testimonial .our-trusted-clients {
  background-color: var(--clr-black);
  padding: 30px 20px 22px;
  border-radius: 0;
}

.latest-client-testimonial .our-trusted-clients .clientSwiper {
  margin-top: 25px;
}

@media screen and (max-width: 1199px) {
  .latest-client-testimonial .our-trusted-clients {
    /*margin-bottom: 50px;*/
  }
}

@media screen and (max-width: 767px) {
  .latest-client-testimonial .our-trusted-clients {
    /*margin-bottom: 40px;*/
  }
}

/*---latest-ppc-testimonial end --*/

/*hire new hero section css starts here*/

.hire-new-hero-section {
  background-size: cover !important;
  background-position: right 0% bottom 0;
  position: relative;
  height: calc(100vh - 80px);
}

.hire-new-hero-section .services-new-hero-section {
  background: none;
}

@media screen and (min-width: 1920px) and (min-height: 1050px) {
  .hire-new-hero-section {
    background-size: cover !important;
  }
}

@media screen and (min-width: 1920px) and (min-height: 1050px) {
  .hire-new-hero-section .services-new-hero-section .container-fluid {
    height: calc(100% - 84px) !important;
  }
}

@media screen and (max-width: 1599px) {
  .hire-new-hero-section {
    background-position: right 40% bottom 0;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1599px) {
  .hire-new-hero-section {
    height: auto;
    padding: 35px 0;
  }
}

@media screen and (max-width: 1199px) {
  .hire-new-hero-section {
    height: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .hire-new-hero-section::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    /* White gradient with 50% opacity */
  }
}

@media screen and (max-width: 1199px) {
  .hire-new-hero-section {
    background-position: right 60% bottom 0;
    padding: 0;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .hire-new-hero-section {
    background-position: right 40% bottom 0;
    padding: 0;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .hire-new-hero-section {
    background-position: right 40% bottom 0;
    padding: 0;
    background-size: cover;
  }
}

@media screen and (max-width: 1199px) {
  .hire-new-hero-section .services-new-hero-section {
    background-position: right 60% bottom 0;
    padding: 40px 0 40px;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .hire-new-hero-section .services-new-hero-section {
    background-position: right 40% bottom 0;
    padding: 40px 0 40px;
    background-size: cover;
  }
}

@media screen and (max-width: 767px) {
  .hire-new-hero-section .services-new-hero-section {
    background-position: right 40% bottom 0;
    padding: 25px 0 25px;
    background-size: cover;
  }
}

@media screen and (min-width: 1200px) {
  .hire-new-hero-section .services-new-hero-section .services-hero-section .services-hero-statistics {
    margin: 50px 0 0 0;
  }
}

.hire-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards {
  position: relative;
  padding: 0 10px;
}

.hire-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards:after {
  content: "";
  position: absolute;
  background-color: rgba(232, 232, 232, 0.4);
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
}

@media only screen and (max-width: 375px) {
  .hire-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards:after {
    display: none;
  }
}

.hire-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards:last-child:after {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .hire-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards:nth-child(even):after {
    display: none;
  }
}

/*hire new hero section css ends here*/

/*why hire dedicated developer with icons css starts here*/

.why-new-hire-dedicated .block-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

@media only screen and (max-width: 1599px) {
  .why-new-hire-dedicated .block-wrapper {
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .why-new-hire-dedicated .block-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 575px) {
  .why-new-hire-dedicated .block-wrapper {
    grid-template-columns: 1fr;
  }
}

.why-new-hire-dedicated .block-wrapper .item {
  padding: 30px;
}

@media only screen and (max-width: 1599px) {
  .why-new-hire-dedicated .block-wrapper .item {
    padding: 20px;
  }
}

.why-new-hire-dedicated .block-wrapper .item .item-icon {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .why-new-hire-dedicated .block-wrapper .item .item-icon {
    margin-bottom: 10px;
    width: 48px;
    height: 48px;
  }
}

/*why hire dedicated developer with icons css ends here*/

.without-icon .why-new-hire-dedicated .block-wrapper .item .item-icon {
  display: none;
}

/*new we serve buttons css start here*/

.new-we-serve-btn-outer {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

@media only screen and (min-width: 1500px) {
  .new-we-serve-btn-outer {
    max-width: 1446px;
  }
}

/*@media only screen and (max-width: 375px) {*/
/*  .new-we-serve-btn-outer {*/
/*    justify-content: end;*/
/*  }*/
/*}*/

/*new we serve buttons css end here*/

/*section-key-skills-react css starts here*/

.section-key-skills-react {
  width: 100%;
  background-repeat: no-repeat;
  background-position: right 95%;
}

.section-key-skills-react .key-skills-menu {
  width: 100%;
}

.section-key-skills-react .key-skills-menu ul {
  margin: 0;
  padding: 0;
}

.section-key-skills-react .key-skills-menu ul li {
  width: 100%;
  list-style: none;
  text-align: left;
  display: flex;
  margin-top: 20px;
}

.section-key-skills-react .key-skills-menu ul li .icon {
  position: relative;
  top: 1px;
}

.section-key-skills-react .key-skills-menu ul li .icon::before {
  content: "";
  background-color: #ffffff;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
}

/*section-key-skills-react css ends here*/

/*---section-hire-technology-stacks start --*/

.section-hire-technology-stacks .content-wrap a {
  color: var(--clr-blue);
  text-decoration: underline;
}

.section-hire-technology-stacks .tech-outer .techs-main {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.section-hire-technology-stacks.bg-off-white .tech-outer .techs-main {
  background-color: #f7f7f7;
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .techs-main {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .section-hire-technology-stacks .tech-outer .techs-main {
    padding: 22px 15px 25px;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-heading {
  width: 400px;
  display: flex;
  align-items: center;
  padding-right: 15px;
  gap: 10px;
}

@media only screen and (max-width: 1199px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading {
    width: 350px;
  }
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading {
    width: 280px;
  }
}

@media only screen and (max-width: 767px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99em;
  flex: 0 0 auto;
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-icon {
    width: 48px;
    height: 48px;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-icon .icon {
  width: 28px;
  height: 28px;
}

.section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-heading {
  max-width: 230px;
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-heading {
    max-width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-heading {
    max-width: none;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs {
  width: calc(100% - 400px);
}

@media only screen and (max-width: 1199px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-techs {
    width: calc(100% - 350px);
  }
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-techs {
    width: calc(100% - 280px);
  }
}

@media only screen and (max-width: 767px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-techs {
    width: 100%;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs ul li {
  background-color: white;
  border-radius: 30px;
  padding: 0.66rem 1rem 0.66rem 0.8rem;
  margin: 0;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-techs ul li {
    padding: 0.6rem 0.6rem;
    font-size: 15px;
    line-height: 22px;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs ul li.bg-off-white {
  background-color: white;
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs ul li:last-child {
  margin-right: 0;
}

/*---section-hire-technology-stacks end --*/
/*---section-hire-technology-stacks start --*/

.section-hire-technology-stacks .tech-outer .techs-main {
  padding: 30px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .techs-main {
    padding: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .section-hire-technology-stacks .tech-outer .techs-main {
    padding: 22px 15px 25px;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-heading {
  width: 400px;
  display: flex;
  align-items: center;
  padding-right: 15px;
  gap: 10px;
}

@media only screen and (max-width: 1199px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading {
    width: 350px;
  }
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading {
    width: 280px;
  }
}

@media only screen and (max-width: 767px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading {
    width: 100%;
    margin-bottom: 1rem;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99em;
  flex: 0 0 auto;
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-icon {
    width: 48px;
    height: 48px;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-heading {
  max-width: 230px;
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-heading {
    max-width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-heading .tech-heading {
    max-width: none;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs {
  width: calc(100% - 400px);
}

@media only screen and (max-width: 1199px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-techs {
    width: calc(100% - 350px);
  }
}

@media only screen and (max-width: 991px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-techs {
    width: calc(100% - 280px);
  }
}

@media only screen and (max-width: 767px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-techs {
    width: 100%;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs ul li {
  background-color: white;
  border-radius: 30px;
  padding: 0.66rem 1rem 0.66rem 0.8rem;
  margin: 0;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .section-hire-technology-stacks .tech-outer .technology-stacks-techs ul li {
    padding: 0.6rem 0.6rem;
    font-size: 15px;
    line-height: 22px;
  }
}

.section-hire-technology-stacks .tech-outer .technology-stacks-techs ul li:last-child {
  margin-right: 0;
}

/*---section-hire-technology-stacks end --*/

/* --- new css for python page start --- */

.blend-mode-multiply {
  mix-blend-mode: multiply;
}

.border-white {
  border-color: #fff;
}

/* --- new css for python page end --- */

/*why choose digital transformation css starts here*/

.sec-why-digital-transformation .item-choose {
  display: flex;
  width: 100%;
  gap: 30px;
}

@media only screen and (max-width: 1599px) {
  .sec-why-digital-transformation .item-choose {
    gap: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .sec-why-digital-transformation .item-choose {
    gap: 20px;
    row-gap: 30px;
  }
}

@media only screen and (max-width: 1023px) {
  .sec-why-digital-transformation .item-choose {
    flex-direction: column-reverse;
  }
}

.sec-why-digital-transformation .item-choose .block {
  flex: 1;
}

.sec-why-digital-transformation .item-choose .block .inner-content {
  padding: 30px;
  height: 100%;
}

@media only screen and (max-width: 1599px) {
  .sec-why-digital-transformation .item-choose .block .inner-content {
    padding: 20px;
  }
}

.sec-why-digital-transformation .item-choose .block:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .sec-why-digital-transformation .item-choose .block:nth-child(2) {
    max-width: 709px;
    margin: 0 auto;
  }
}

.sec-why-digital-transformation .item-choose .block:nth-child(2) .img-wrap {
  height: 100%;
  width: 100%;
}

.sec-why-digital-transformation .item-choose .block:nth-child(2) .img-wrap img {
  object-fit: cover;
  height: 100%;
}

.sec-why-digital-transformation .item-choose .block:nth-child(2) .digi-model-btn {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.sec-why-digital-transformation .item-choose .block:nth-child(2) .digi-model-btn .icon {
  width: 24px;
  height: 24px;
}
.sec-why-digital-transformation .item-choose .block:nth-child(2) .digi-model-btn .icon:before {
  background-color: var(--clr-white);
}

.sec-why-digital-transformation .item-choose .block:nth-child(2) .item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-radius: 0px 0px 24px 24px;
  background: rgba(49, 49, 49, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
}

@media only screen and (max-width: 1023px) {
  .sec-why-digital-transformation .item-choose .block:nth-child(2) .item-content {
    border-radius: 0px 0px 16px 16px;
    padding: 15px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .sec-why-digital-transformation .item-choose .block:nth-child(2) .item-content {
    border-radius: 0px 0px 16px 16px;
    padding: 8px 20px;
  }
}

@media only screen and (max-width: 375px) {
  .sec-why-digital-transformation .item-choose .block:nth-child(2) .item-content {
    padding: 10px 20px;
  }
}

.sec-why-digital-transformation .item-choose .block:nth-child(2) .digi-model-btn {
  display: flex;
  width: 56px;
  height: 56px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #fff;
  color: #fff;
  overflow: hidden;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
  position: relative;
}

@media only screen and (max-width: 1023px) {
  .sec-why-digital-transformation .item-choose .block:nth-child(2) .digi-model-btn {
    width: 48px;
    height: 48px;
  }
}

@media only screen and (max-width: 480px) {
  .sec-why-digital-transformation .item-choose .block:nth-child(2) .digi-model-btn {
    width: 40px;
    height: 40px;
  }
}

.sec-why-digital-transformation .item-choose .block:nth-child(2) .digi-model-btn:hover,
.sec-why-digital-transformation .item-choose .block:nth-child(2) .digi-model-btn:focus {
  outline: none;
  box-shadow: none;
}

.mi-digital-modal.mi-modal .modal-dialog {
  max-width: 1080px;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .mi-digital-modal.mi-modal .modal-dialog {
    max-width: 800px;
  }
}

@media only screen and (max-width: 991px) {
  .mi-digital-modal.mi-modal .modal-dialog {
    max-width: 680px;
  }
}

.mi-digital-modal.mi-modal .modal-dialog .mi-modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
}

.mi-digital-modal.mi-modal .modal-dialog .mi-modal-header .mi-btn-close {
  color: var(--clr-white);
}

.mi-digital-modal.mi-modal .modal-dialog .modal-body {
  line-height: 0;
}

@media only screen and (max-width: 1199px) {
  .mi-digital-modal.mi-modal .modal-dialog .modal-body iframe {
    height: 450px;
  }
}

@media only screen and (max-width: 575px) {
  .mi-digital-modal.mi-modal .modal-dialog .modal-body iframe {
    height: 400px;
  }
}

@media only screen and (max-width: 480px) {
  .mi-digital-modal.mi-modal .modal-dialog .modal-body iframe {
    height: 350px;
  }
}

@media only screen and (max-width: 375px) {
  .mi-digital-modal.mi-modal .modal-dialog .modal-body iframe {
    height: 300px;
  }
}

@media only screen and (min-width: 1365px) and (max-width: 1599px) {
  .sec-why-digital-transformation .item-choose .block .inner-content p {
    font-size: 18px;
  }
}

/*why choose digital transformation css ends here*/

.we-serve__item .ongoing-left-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1199px) {
  .we-serve__item .ongoing-left-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .we-serve__item .ongoing-left-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 25px;
  }
}

.we-serve__item .ongoing-left-icon .icon {
  width: 24px;
  height: 24px;
}

.we-serve__item .ongoing-right-bg {
  float: right;
  background: #192020;
  border-radius: 8px;
  padding: 9px 13px;
  text-align: center;
}

.c-light-blue {
  color: #29ffff;
}

.c-light-orange {
  color: #ffd8c0;
}

.c-light-green {
  color: #b5f1cc;
}

.c-light-purple {
  color: #d0bfff;
}

.we-serve__item .ongoing-bottom {
  width: 100%;
}

.we-serve__item .ongoing-bottom ul {
  margin: 0;
  padding: 0;
}

.we-serve__item .ongoing-bottom ul li {
  list-style: none;
  display: inline-block;
  background: #192020;
  border-radius: 30px;
  padding: 10px 13px;
  text-align: center;
  margin: 15px 8px 0 0;
}

.powerful-item .increase-icon {
  width: 56px;
  height: 56px;
  border-radius: 100%;
  border: solid #192020 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.powerful-item .increase-icon .icon {
  width: 24px;
  height: 24px;
}

/*new solutions in black starts here*/

.explore-specialise-teams .explore-team-inner {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .explore-specialise-teams .explore-team-inner {
    width: calc(100% + 15px);
  }
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-team-inner {
    display: block;
  }
}

.explore-specialise-teams .explore-team-inner .explore-tabs {
  width: 20%;
  display: block;
  height: max-content;
  text-align: left;
  padding: 0;
}

@media only screen and (max-width: 1599px) {
  .explore-specialise-teams .explore-team-inner .explore-tabs {
    white-space: normal;
    overflow: visible;
  }
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-team-inner .explore-tabs {
    width: 100%;
    display: flex;
    white-space: nowrap;
    overflow: auto;
    gap: 10px;
    background-color: var(--clr-white) !important;
    padding: 5px;
  }
}

@media only screen and (max-width: 575px) {
  .explore-specialise-teams .explore-team-inner .explore-tabs {
    gap: 8px;
  }
}

.explore-specialise-teams .explore-team-inner .tab-content {
  width: 80%;
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-team-inner .tab-content {
    width: calc(100% + 15px);
  }
}

.explore-specialise-teams .explore-team-inner .explore-tabs li {
  margin-bottom: 8px;
}

@media screen and (max-width: 1599px) {
  .explore-specialise-teams .explore-team-inner .explore-tabs .nav-item {
    text-align: left;
  }
}

@media screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-team-inner .explore-tabs .nav-item {
    margin-bottom: 2px;
  }
}

.explore-specialise-teams .explore-team-inner .explore-tabs .nav-item .nav-link {
  color: var(--clr-dark-grey);
  border-bottom: 1px solid transparent;
  border-radius: 0;
  padding: 0.5rem 0;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-team-inner .explore-tabs .nav-item .nav-link {
    padding: 0.3rem 0.5rem;
    color: var(--clr-black);
    opacity: 0.8;
  }
}

@media only screen and (max-width: 575px) {
  .explore-specialise-teams .explore-team-inner .explore-tabs .nav-item .nav-link {
    padding: 0.3rem;
  }
}

.explore-specialise-teams .explore-team-inner .explore-tabs .nav-item .nav-link.active {
  background-color: transparent;
  border-bottom: 1px solid var(--clr-dark-black);
  opacity: 1;
}

.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main {
  border-radius: 15px;
  padding: 10px 10px 20px 10px;
  display: flex;
  flex-direction: column;
}

.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-images {
  position: relative;
  height: auto;
  flex: 0 0 auto;
}

.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-images .badges {
  position: absolute;
  right: 10px;
  top: 12px;
  border-radius: 6px;
  padding: 6px 10px;
}

@media only screen and (max-width: 575px) {
  .explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-images .badges {
    padding: 4px 8px;
  }
}

.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-images img {
  object-fit: cover;
}

@media only screen and (max-width: 1499px) {
  .explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-images img {
    height: auto;
  }
}

.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-content .serviceteam-list,
.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-content .team-info {
  display: none !important;
}

@media only screen and (max-width: 1199px) {
  .explore-specialise-teams .explore-team-inner .swipe-btn-outer {
    margin-right: 15px;
  }
}

.explore-specialise-teams .explore-team-inner .swipe-btn-outer .com-btn {
  border: 1px solid var(--clr-white);
}

.explore-specialise-teams .explore-team-inner .swipe-btn-outer .com-btn .icon {
  position: relative;
  z-index: 3;
}

.explore-specialise-teams .explore-team-inner .swipe-btn-outer .com-btn .icon::before {
  background-color: var(--clr-white);
}

.explore-specialise-teams .explore-team-inner .swipe-btn-outer .com-btn:hover .icon::before {
  background-color: var(--clr-black);
}

.explore-specialise-teams .explore-team-inner .swipe-btn-outer .com-btn:before {
  background-color: var(--clr-white);
}

.explore-specialise-teams .explore-team-inner .swipe-btn-outer .com-btn span {
  color: var(--clr-white);
}

.explore-specialise-teams .explore-team-inner .swipe-btn-outer .com-btn:hover span {
  color: var(--clr-black);
}

.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-content {
  height: 100%;
  position: relative;
}

.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-content .top-one .teamcompo-list li {
  display: flex;
}

.explore-specialise-teams
  .explore-team-inner
  .tab-content
  .card-outer
  .card-content
  .top-one
  .teamcompo-list
  li
  .small-text {
  padding-left: 5px;
}

.explore-specialise-teams .explore-team-inner .tab-content .card-outer .card-main .card-content .top-one .slide-title {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 64px;
}

@media only screen and (max-width: 1365px) {
  .explore-specialise-teams
    .explore-team-inner
    .tab-content
    .card-outer
    .card-main
    .card-content
    .top-one
    .slide-title {
    height: auto;
  }
}

@media only screen and (max-width: 991px) {
  .explore-specialise-teams
    .explore-team-inner
    .tab-content
    .card-outer
    .card-main
    .card-content
    .top-one
    .slide-title {
    -webkit-line-clamp: inherit;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .explore-specialise-teams .explore-team-inner .swipe-btn-outer {
    margin-right: 15px;
  }
}

.explore-teams-dark {
  background-color: var(--clr-black);
  color: var(--clr-white);
}

.explore-teams-dark .explore-specialise-teams .swipe-btn-outer .com-btn {
  border-color: var(--clr-white);
}
.explore-teams-dark .explore-specialise-teams .swipe-btn-outer .com-btn span {
  color: var(--clr-white);
}
.explore-teams-dark .explore-specialise-teams .swipe-btn-outer .com-btn:before {
  background-color: var(--clr-white);
}
.explore-teams-dark .explore-specialise-teams .swipe-btn-outer .com-btn:hover span {
  color: #192020;
}

@media only screen and (max-width: 1365px) {
  .explore-teams-dark .explore-specialise-teams .swipe-btn-outer .com-btn {
    width: 48px;
    height: 48px;
  }
}

.explore-teams-dark .font-40.poppins-medium.font-primary {
  color: var(--clr-white);
}

.explore-teams-dark .explore-specialise-teams .explore-tabs {
  background-color: #252b2b;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .explore-teams-dark .explore-specialise-teams .explore-tabs {
    width: max-content;
    justify-content: center !important;
    margin: 0 auto;
  }
}

.explore-teams-dark .explore-specialise-teams .explore-tabs .nav-item .nav-link {
  color: var(--clr-white);
}

.explore-teams-dark .explore-specialise-teams .explore-tabs .nav-item .nav-link.active {
  color: var(--clr-black);
}

.explore-teams-dark .explore-specialise-teams .tab-content .card-outer .card-main {
  background-color: #252b2b;
  color: var(--clr-white);
}

.explore-teams-dark .top-one .font-primary {
  color: var(--clr-white);
}

.explore-teams-dark .explore-specialise-teams .tab-content .card-outer .card-main .card-content .serviceteam-list li {
  background-color: var(--clr-dark-black);
}

.explore-teams-dark .mi-modal-header {
  color: var(--clr-black);
}

.explore-teams-dark .SumoSelect > .optWrapper > .options > li.opt label {
  color: var(--clr-black);
}

.explore-teams-dark .explore-specialise-teams .swipe-btn-outer .com-btn .icon:before {
  background-color: var(--clr-white);
}
.explore-teams-dark .explore-specialise-teams .swipe-btn-outer .com-btn:hover .icon:before {
  background-color: var(--clr-black);
}

.clr-mi-red {
  color: #ed184f;
}

.clr-mi-red:hover {
  color: #ed184f;
}

/* --start-ui-page-section-new-22-04-2024-- */
.ui-page-section-new {
  width: 100%;
  background: #f0f0f0;
}

.ui-page-section-inn {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ui-page-section-new .ui-page-section-inn .white-bg-main {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ui-page-section-new .ui-page-section-inn .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide .bgwhitein {
  background: #fff;
  border: solid 1px #e7e7e6;
  border-radius: 30px;
  padding: 10px;
}

.ui-page-section-new .work-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .ui-page-section-new .work-main {
    display: grid;
    align-items: top;
  }
}

.ui-page-section-new .work-main-inn {
  display: grid;
  grid-template-columns: 640px 440px 304px;
  gap: 20px;
  border-radius: 22px;
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .ui-page-section-new .work-main-inn {
    grid-template-columns: 44% 30% auto;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .ui-page-section-new .work-main-inn {
    grid-template-columns: 50% auto;
    grid-gap: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .ui-page-section-new .work-main-inn {
    grid-template-columns: 50% auto;
    grid-gap: 10px;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .ui-page-section-new .work-main-inn {
    display: block;
    width: 100%;
  }
}

.ui-page-section-new .work-main-inn .card-size {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.ui-page-section-new .work-main-inn .card-size a img {
  transition: all 0.2s ease-in-out;
}

.ui-page-section-new .work-main-inn .card-size a img:hover {
  transform: scale(1.04);
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .ui-page-section-new .work-main-inn .card-size {
    margin-bottom: 10px;
  }
}

.ui-page-section-new .work-main-inn .card-size img {
  width: 100%;
  aspect-ratio: auto 640 / 620;
  height: auto;
  border-radius: 22px;
}

@media screen and (max-width: 991px) {
  .ui-page-section-new .work-main-inn .card-size img {
    object-fit: cover;
    height: 100%;
  }
}

.ui-page-section-new .work-main-inn .last-card-text {
  background: #f0f0f0;
  border-radius: 22px;
  height: 100%;
  padding: 10px;
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .ui-page-section-new .work-main-inn .last-card-text {
    display: grid;
  }
}

@media screen and (max-width: 1199px) {
  .ui-page-section-new .work-main-inn .last-card-text {
    display: flex;
    align-items: center;
  }
}

.ui-page-section-new .work-main-inn .card-small {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.ui-page-section-new .work-main-inn .card-small a img {
  transition: all 0.2s ease-in-out;
}

.ui-page-section-new .work-main-inn .card-small a img:hover {
  transform: scale(1.04);
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .ui-page-section-new .work-main-inn .card-small {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .ui-page-section-new .work-main-inn .card-small {
    display: none;
  }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
  .ui-page-section-new .work-main-inn .card-small {
    display: none;
  }
}

.ui-page-section-new .work-main-inn .card-small img {
  width: 100%;
  aspect-ratio: auto 440 / 620;
  height: auto;
  border-radius: 22px;
}

.ui-page-section-new .work-main-inn .last-card-text .last-card-text-inner {
  padding: 10px;
}

.ui-page-section-new .user-main {
  margin: 10px 0;
  text-align: left;
}

.ui-page-section-new .user-main .research {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  text-align: left;
}

.ui-page-section-new .research .user-research {
  text-decoration: none;
  list-style: none;
  background: #fff;
  border-radius: 30px;
  color: #192020;
  padding: 6px 12px;
  font-size: 14px;
  max-width: max-content;
  display: inline-block;
  margin-bottom: 9px;
}

.ui-page-section-new .card-mb-btn {
  position: relative;
  padding-bottom: 0;
}

@media screen and (min-width: 1024px) {
  .ui-page-section-new .card-mb-btn {
    position: absolute;
    bottom: 0;
    padding-bottom: 40px;
  }
}

/* --end-ui-page-section-new-22-04-2024-- */

/* START : our-recent-work-new */

.our-recent-work-new .swiper-pagination {
  position: relative;
  padding-top: 20px;
}

.our-recent-work-new .services-left {
  margin-top: 18px;
  margin-bottom: 12px;
}

.our-recent-work-new .swiper-pagination.swiper-pagination-clickable .swiper-pagination-bullet {
  opacity: 1;
  background-color: #00000066;
  border-radius: 100px;
  transition: all 0.3s ease;
  width: 8px;
  height: 8px;
  font-size: 0;
}

.our-recent-work-new .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #111111;
  opacity: 1;
  width: 46px;
  transition: all 0.3 ease;
}

/* END : our-recent-work-new */

/* game dev css start here */

.game-dev .game-dev-item {
  background-color: #252b2b;
  padding: 30px;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-gap: 30px;
  border-radius: 24px;
  margin-bottom: 16px;
  position: sticky;
  position: -webkit-sticky;
  top: 105px;
}

@media only screen and (max-width: 991px) {
  .game-dev .game-dev-item {
    padding: 20px;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .game-dev .game-dev-item {
    padding: 16px;
    grid-gap: 16px;
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
}

.game-dev .game-dev-title {
  position: sticky;
  position: -webkit-sticky;
  top: 105px;
}

.game-dev .game-dev-item .game-dev-icon {
  background-color: #3b4040;
  height: 56px;
  width: 56px;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .game-dev .game-dev-item .game-dev-icon {
    height: 46px;
    width: 46px;
  }
}

.game-dev .game-dev-item .game-dev-icon .icon::before {
  background-color: var(--clr-white);
}

/* game dev css end here */

/* game genres css start here */

.game-genres .game-genres-list {
  display: grid;
  grid-gap: 60px 48px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

@media screen and (max-width: 1439px) {
  .game-genres .game-genres-list {
    grid-gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .game-genres .game-genres-list {
    grid-gap: 20px;
    grid-template-columns: 1fr;
  }
}

.game-genres .game-genres-list .decor {
  position: absolute;
  bottom: -15px;
  right: -70px;
}

@media screen and (max-width: 767px) {
  .game-genres .game-genres-list .decor {
    display: none;
  }
}

.game-genres .game-genres-list .game-genres-item:nth-child(3n + 4) {
  background-color: red;
}

.game-genres .game-genre-item {
  position: relative;
}

.game-genres .game-genre-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -24px;
  width: 1px;
  height: 70%;
  background: linear-gradient(0deg, transparent, transparent, #686b72, transparent, transparent);
}

@media screen and (max-width: 1439px) {
  .game-genres .game-genre-item::before {
    left: -20px;
  }
}

.game-genres .game-genre-item:nth-child(3n + 2)::before {
  display: none;
}

/* game genres css end here */

/* consent form start */
.consent-banner-button {
  color: rgb(237, 24, 79) !important;
  border-color: rgb(237, 24, 79) !important;
  border-width: 1px !important;
  padding: 10px 22px !important;
  border-radius: 99em !important;
}

.consent-banner-button[href="#accept"] {
  color: #ffffff !important;
  border-color: rgb(237, 24, 79) !important;
  background-color: rgb(237, 24, 79) !important;
}

.consent-banner-button[href="#accept"]:hover {
  opacity: 0.9 !important;
}

#consent-banner-modal .consent-banner-modal-wrapper {
  align-items: center;
}

@media only screen and (max-width: 767px) {
  #consent-banner-modal .consent-banner-modal-wrapper p {
    margin-bottom: 15px !important;
  }
}

@media only screen and (max-width: 767px) {
  #consent-banner-main #consent-banner-modal {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    min-width: auto !important;
    transform: none !important;
    top: auto !important;
    bottom: 0 !important;
    position: fixed !important;
    z-index: 9999 !important;
    padding: 18px 0 10px 0 !important;
    border-radius: 0 !important;
  }
}

#consent-banner-settings {
  padding: 20px 15px 15px !important;
}

#consent-banner-settings ul label {
  font-size: 15px !important;
  line-height: 24px;
  font-weight: 500 !important;
  margin: 0 !important;
}

#consent-banner-settings ul p {
  font-size: 12px;
  line-height: 16px;
}

#consent-banner-settings ul li {
  margin: 0 !important;
  padding: 10px 0 !important;
}

#consent-banner-settings ul p {
  margin-top: 1px !important;
  margin-left: 31px !important;
}

#consent-banner-settings .consent-banner-settings-buttons {
  margin: 20px 0 10px !important;
  display: flex;
  grid-gap: 5px;
  justify-content: space-around !important;
}

#consent-banner-settings .consent-banner-settings-buttons [href="#close"] {
  margin-left: 0 !important;
}

#consent-banner-settings input[type="checkbox"] {
  display: none;
}

/* Create a custom checkbox */
#consent-banner-settings input[type="checkbox"] + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}

/* Create the custom checkbox appearance */
#consent-banner-settings input[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: white;
}

/* Style the checked state */
#consent-banner-settings input[type="checkbox"]:checked + label:before {
  background-color: #ed184f;
  /* Change this to your desired color */
  border: 2px solid #ed184f;
}

/* Optional: Add a checkmark */
#consent-banner-settings input[type="checkbox"]:checked + label:after {
  content: "\2714";
  position: absolute;
  left: 5px;
  top: 0;
  color: white;
  font-size: 14px;
}

/* consent form end */

.email-us-project-careers {
  margin-top: 59px;
}
@media screen and (max-width: 1199px) {
  .email-us-project-careers {
    margin-top: 48px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 575px) {
  .email-us-project-careers {
    margin-top: 0px;
  }
}
.email-sales {
  color: #192020;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .email-sales {
    font-size: 15px;
  }
}
.address-top-space {
  margin-top: 15px;
}
.mob-top {
  margin-top: 8px;
}

@media screen and (min-width: 575px) {
  .projectpt {
    margin-top: 12px;
  }
}
.communication-location .projectpt-conta {
  margin-top: 25px;
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .communication-location .projectpt-conta {
    margin-top: 12px;
  }
}
@media screen and (max-width: 575px) {
  .communication-location .projectpt-conta {
    margin-top: 25px !important;
  }
}
@media screen and (min-width: 768px) {
  .sm-project {
    margin-top: 15px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .sm-project {
    margin-top: 24px;
  }
}

/*casestudy slider new css starts here*/

.section-case-study .our-case-study-main .swiper-slide {
  height: auto;
}

.section-case-study .our-case-study-main .swiper-slide .our-work {
  min-height: 100%;
}

/*casestudy slider new css ends here*/

.sec-we-serve.we-serve-buttons .we-serve__item .we-serve__item-icon .icon {
  width: 24px;
  height: 24px;
}

.pink-pink {
  color: #ed184f;
}

.thanks-pg-bg {
  background: url("../img/hire-page-bg/hire-python.webp") no-repeat center center;
  background-size: cover;
}

/*--- New Case Study Listing page Sep 24 Mi-122 Start --*/
.case-studies-main {
  background-color: #f0f0f0;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 1599px) {
  .case-studies-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1365px) {
  .case-studies-main {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .case-studies-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .case-studies-main {
    padding-left: 0;
    padding-right: 0;
  }
}

.case-studies-main .case-studies-heading .case-title {
  max-width: 750px;
}
.case-studies-main .case-studies-heading {
  /*    display: flex;
    justify-content: space-between;
    align-items: end;*/
  /*width: calc(100% - 390px);*/
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .case-studies-main .case-studies-heading {
    display: block;
    width: 100%;
    padding-bottom: 20px;
  }
}
.case-study-filter {
  max-width: 540px;
}
.case-studies-main .case-studies-heading .case-studies-heading .case-title {
  max-width: 650px;
}
.case-studies-main .case-studies-lists {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 26px;
  padding: 10px;
  margin-bottom: 80px;
  border: 1px solid #e2e2d5;
}

@media only screen and (max-width: 1599px) {
  .case-studies-main .case-studies-lists {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .case-studies-main .case-studies-lists {
    display: block;
    gap: 10px;
    margin-bottom: 25px;
  }
}
.case-studies-main .case-studies-lists:last-child {
  margin-bottom: 0;
}

.case-studies-inner {
  display: flex;
  align-items: start;
  gap: 40px;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .case-studies-inner {
    gap: 25px;
  }
}
.case-studies-inner .case-studies-both {
  width: calc(100% - 300px);
}
@media only screen and (min-width: 1366px) and (max-width: 1599px) {
  .case-studies-inner .case-studies-both {
    width: calc(100% - 260px);
  }
}
@media only screen and (max-width: 767px) {
  .case-studies-inner .case-studies-both {
    width: 100%;
  }
}
@media only screen and (max-width: 1365px) {
  .case-studies-inner .case-studies-both {
    width: 100%;
  }
}
.case-studies-inner .case-studies-both a {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .case-studies-inner .case-studies-both a {
    display: block;
    gap: 10px;
  }
}
.case-studies-main .case-studies-lists .case-studies-big .cs-images {
  border-radius: 22px;
  width: 100%;
}
@media only screen and (min-width: 1366px) and (max-width: 1699px) {
  .case-studies-main .case-studies-lists .case-studies-big .cs-images {
    min-height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .case-studies-main .case-studies-lists .case-studies-big .cs-images {
    height: 100%;
    object-fit: cover;
  }
}
.case-studies-main .case-studies-lists .case-studies-big {
  width: 59.2%;
}
@media only screen and (max-width: 767px) {
  .case-studies-main .case-studies-lists .case-studies-big {
    width: 100%;
  }
}
@media only screen and (max-width: 1365px) {
  .case-studies-main .case-studies-lists .case-studies-big {
    width: 100%;
  }
}
.case-studies-main .case-studies-lists .case-studies-small {
  width: 40.8%;
}
@media only screen and (max-width: 767px) {
  .case-studies-main .case-studies-lists .case-studies-small {
    display: none;
  }
}
@media only screen and (max-width: 1365px) {
  .case-studies-main .case-studies-lists .case-studies-small {
    display: none;
  }
}
.case-studies-main .case-studies-lists .case-studies-small .cs-images {
  border-radius: 22px;
  width: 100%;
}
@media only screen and (min-width: 1366px) and (max-width: 1699px) {
  .case-studies-main .case-studies-lists .case-studies-small .cs-images {
    min-height: 100%;
    object-fit: cover;
  }
}

.case-studies-main .case-studies-lists .case-studies-details {
  background-color: #f0f0f0;
  border-radius: 22px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  width: 300px;
}
@media only screen and (min-width: 1366px) and (max-width: 1599px) {
  .case-studies-main .case-studies-lists .case-studies-details {
    width: 260px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .case-studies-main .case-studies-lists .case-studies-details {
    min-height: 415px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .case-studies-main .case-studies-lists .case-studies-details {
    margin-top: 10px;
    min-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .case-studies-main .case-studies-lists .case-studies-details {
    width: 100%;
    margin-top: 10px;
    border-radius: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .case-studies-main .case-studies-lists .case-studies-details {
    padding: 15px;
  }
}

.case-studies-main .case-studies-lists .case-studies-details .project-title .more {
  width: 30px;
  cursor: pointer;
}
@media only screen and (min-width: 1366px) and (max-width: 1599px) {
  .case-studies-main .case-studies-lists .case-studies-details .case-studies-title {
    line-height: 1.775rem;
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .case-studies-main .case-studies-lists .case-studies-details .case-studies-title {
    min-height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .case-studies-main .case-studies-lists .case-studies-details .case-studies-title {
    font-size: 20px;
    line-height: 1.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .case-studies-main .case-studies-lists .case-studies-details .case-collpase {
    min-height: inherit;
  }
}

.case-studies-main .case-studies-lists .case-studies-details .inner-points .service-ind {
  margin: 10px 0 0;
}

@media only screen and (max-width: 1599px) {
  .case-studies-main .case-studies-lists .case-studies-details .inner-points .service-ind {
    margin: 6px 0 0;
  }
}
@media only screen and (max-width: 1499px) {
  .case-studies-main .case-studies-lists .case-studies-details .inner-points .service-ind {
    margin: 5px 0 0;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1599px) {
  .case-studies-main .case-studies-lists .case-studies-details .inner-points .service-ind {
    font-size: 1.15rem;
    line-height: 1.675rem;
  }
}

.case-studies-main .case-studies-lists .case-studies-details ul {
  margin: 0;
  padding: 0 0 0 20px;
}

@media only screen and (min-width: 1366px) and (max-width: 1599px) {
  .case-studies-main .case-studies-lists .case-studies-details ul li {
    line-height: 1.5rem;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .case-studies-main .case-studies-lists .case-studies-details ul li {
    flex: 0 0 auto; /* Ensures list items don't shrink */
    margin-right: 10px; /* Adds some spacing between items */
  }
}

@media only screen and (max-width: 575px) {
  .case-studies-main .case-studies-lists .case-studies-details .inner-points:first-child {
    display: none;
  }
}

@media only screen and (max-width: 1699px) {
  .case-studies-main .case-studies-lists .case-studies-details .case-study-btn {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .case-studies-main .case-studies-lists .case-studies-details .case-study-btn {
    margin-top: 15px;
  }
}

.have-case-studies {
  background-color: #fff;
  padding: 20px 0 0;
  border-radius: 20px;
  position: sticky;
  top: 100px;
  min-width: 350px;
  overflow: hidden;
  border: 1px solid #e2e2d5;
}

@media only screen and (max-width: 1199px) {
  .have-case-studies {
    display: none;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
  .have-case-studies {
    width: 100%;
    max-width: 200px;
    min-width: 250px;
  }
}

.case-studies-lists-main {
  max-width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .case-studies-lists-main {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    gap: 20px; /* Sets the gap between the grid items */
  }
  .case-studies-main .case-studies-lists {
    display: block;
    flex: 0 1 calc(50% - 15px);
    box-sizing: border-box;
    margin: 0;
  }
}
.have-case-studies .cs-images {
  width: 100%;
}
/*.header{
    width: 1920px;
    margin: 0 auto;
    border: 1px solid red;
}
.case-studies-main .container-fluid{
    width: 1920px;
    margin: 0 auto;
}*/
@media (max-width: 767px) {
  /* Ensure the case-collpase div is closed by default */
  .case-collpase {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  /* Rotate the down arrow by default */
  .more img {
    transition: transform 0.3s ease;
  }

  /* When the case-collpase is open, adjust the height */
  .case-collpase.open {
    max-height: 500px; /* Adjust as needed based on content */
  }

  /* Rotate the arrow when the case-collpase is open */
  .more.rotate img {
    transform: rotate(180deg);
  }
}

/*--- New Case Study Listing page Sep 24 Mi-122 End --*/

/* ----- start css mehul-rajput.php-ceo ----- */

.leadership-ceo-section {
  width: 100%;
}
.leadership-ceo-section .founder-and-ceo {
  font-size: 18px;
  line-height: 1.8rem;
  color: #797979;
  margin-bottom: 0;
  text-align: end;
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-ceo {
    text-align: left;
  }
}
.leadership-ceo-section .founder-and-ceo-name {
  text-align: end;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-ceo-name {
    text-align: left;
    margin-bottom: 22px;
  }
}
.leadership-ceo-section .founder-and-ceo-img {
  width: 100%;
}
.leadership-ceo-section .founder-and-ceo-img img {
  width: 1176px;
  aspect-ratio: auto 1176 / 1200;
  height: 100%;
  border-radius: 24px;
}
@media screen and (max-width: 991px) {
  .leadership-ceo-section .founder-and-ceo-img img {
    border-radius: 14px;
  }
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-ceo-img img {
    border-radius: 12px;
  }
}
.leadership-ceo-section .founder-and-social-desk {
  display: block;
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-social-desk {
    display: none;
  }
}
.leadership-ceo-section .founder-and-social {
  width: 100%;
  text-align: end;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-social {
    width: 100%;
    text-align: start;
    margin-top: 30px;
  }
}
.leadership-ceo-section .founder-and-social ul {
  margin: 0;
  padding: 0;
  width: 100%;
}
.leadership-ceo-section .founder-and-social ul li {
  text-decoration: none;
  list-style: none;
  display: inline-block;
}
.leadership-ceo-section .founder-and-social ul li a {
  text-decoration: none;
  list-style: none;
  border-radius: 100%;
  margin: 0 3px 0 12px;
  text-align: center;
  width: 60px;
  height: 60px;
  border: 5px solid #f6f6f6;
  background: #f6f6f6;
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-social ul li a {
    margin: 0 12px 0 0px;
    border: 2px solid #f6f6f6;
  }
}
.leadership-ceo-section .founder-and-social ul li a:hover {
  border: 5px solid #e6e6e6;
  background: #e6e6e6;
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-social ul li a:hover {
    border: 2px solid #e6e6e6;
  }
}

.leadership-ceo-section .founder-and-social-mobile-open {
  display: none;
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-social-mobile-open {
    display: block;
  }
}
.leadership-ceo-section .founder-and-right-part {
  padding-left: 55px;
}
@media screen and (min-width: 1366px) and (max-width: 1699px) {
  .leadership-ceo-section .founder-and-right-part {
    padding-left: 40px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1365px) {
  .leadership-ceo-section .founder-and-right-part {
    padding-left: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .leadership-ceo-section .founder-and-right-part {
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .leadership-ceo-section .founder-and-right-part {
    padding-left: 0px;
    margin-top: 20px;
  }
}
.section-nacho-won {
  width: 100%;
  background-color: #f7f7f7;
}
.section-nacho-won .ceo-desk-grid-part {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 575px) {
  .section-nacho-won .ceo-desk-grid-part {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.section-nacho-won .ceo-desk-main-im {
  width: 100%;
}
.section-nacho-won .ceo-desk-main-im img {
  width: 1176px;
  aspect-ratio: auto 1176 / 1200;
  height: 100%;
  border-radius: 24px;
}
@media screen and (max-width: 991px) {
  .section-nacho-won .ceo-desk-main-im img {
    border-radius: 14px;
  }
}
@media screen and (max-width: 767px) {
  .section-nacho-won .ceo-desk-main-im img {
    border-radius: 12px;
  }
}
.section-nacho-won .ceo-mindful-team {
  width: 100%;
}

/* .section-nacho-won .ceo-mindful-team .desk-open {
  display: block;
}
@media screen and (max-width: 575px) {
  .section-nacho-won .ceo-mindful-team .desk-open {
    display: none;
  }
} */

.section-nacho-won .ceo-mindful-team span {
  display: block;
}
.section-nacho-won .gallery-ceo-part-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  grid-gap: 20px;
}
@media screen and (max-width: 575px) {
  .section-nacho-won .gallery-ceo-part-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 20px;
  }
}
.section-nacho-won .mobile-open-text {
  display: none;
}
@media screen and (max-width: 575px) {
  .section-nacho-won .mobile-open-text {
    display: block;
    padding-bottom: 15px;
  }
}
.section-nacho-won .gallery-main-im {
  width: 100%;
}
.section-nacho-won .gallery-main-im img {
  width: 1176px;
  aspect-ratio: auto 1176 / 1200;
  height: 100%;
  border-radius: 24px;
}
@media screen and (max-width: 991px) {
  .section-nacho-won .gallery-main-im img {
    border-radius: 14px;
  }
}
@media screen and (max-width: 767px) {
  .section-nacho-won .gallery-main-im img {
    border-radius: 12px;
  }
}
.section-latest-leadership {
  width: 100%;
}
.section-latest-leadership .leadership-main {
  max-width: 425px;
}
@media screen and (max-width: 767px) {
  .section-latest-leadership .leadership-main {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .section-latest-leadership .leadership-main {
    margin-bottom: 20px;
  }
}
.section-latest-leadership .leadership-main .leadership-btn-more {
  display: block;
}

@media screen and (max-width: 767px) {
  .section-latest-leadership .leadership-main .leadership-btn-more {
    display: none;
  }
}
.section-latest-leadership .leadership-btn-more-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .section-latest-leadership .leadership-btn-more-mobile {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 10px;
  }
}
.section-latest-leadership .latest-insights-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 20px;
}
.section-latest-leadership .latest-insights-right .latest-insights-right-inner {
  width: 100%;
}

.section-latest-leadership .latest-insights-right .transformation-partner-im {
  width: 100%;
}
.section-latest-leadership .latest-insights-right .transformation-partner-im img {
  width: 801px;
  aspect-ratio: auto 801 / 700;
  height: 100%;
  border-radius: 24px;
}
@media screen and (max-width: 991px) {
  .section-latest-leadership .latest-insights-right .transformation-partner-im img {
    border-radius: 14px;
  }
}
@media screen and (max-width: 767px) {
  .section-latest-leadership .latest-insights-right .transformation-partner-im img {
    border-radius: 12px;
  }
}

/* ----- end css mehul-rajput.php-ceo ----- */

/* ----- css start for Exit Init Popup start ----- */

.hire-exit-popup-main {
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  transition: opacity 0.15s linear;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 1020;
}
@media only screen and (max-width: 1199px) {
  .hire-exit-popup-main {
    display: none;
  }
}

#exitinitpopup .SumoSelect > .optWrapper > .options {
  font-size: 14px;
  border-radius: 2px;
  position: relative;
  max-height: 122px;
}

#exitinitpopup {
  position: fixed;
  width: 930px;
  z-index: 99;
  background: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 40px 40px 45px 40px;
  border: 1px solid rgba(194, 194, 194, 0.22);
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.2s,
    opacity 0.2s,
    visibility 0s 0.2s;
  box-shadow: -5px 0 12px 4px rgba(0, 0, 0, 0.05);
}

#exitinitpopup:before {
  content: "";
  position: absolute;
  top: -185px;
  right: -120px;
  width: 605px;
  height: 815px;
  background-image: url("../img/exit-init-modal/shadow.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

#exitinitpopup .close-popup {
  width: 30px;
  height: 30px;
  background-color: #fff;
  box-shadow: -5px 0 12px 4px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 20px;
}

#exitinitpopup .close-popup::before,
#exitinitpopup .close-popup::after {
  content: "";
  position: absolute;
  background-color: #000;
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

#exitinitpopup .close-popup::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#exitinitpopup .close-popup::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#exitinitpopup .close-popup:hover {
  background-color: var(--clr-black);
}

#exitinitpopup .close-popup:hover::before,
#exitinitpopup .close-popup:hover::after {
  background-color: #fff;
}

#exitinitpopup .cta-modal {
  display: flex;
  max-width: 500px;
}

#exitinitpopup .cta-modal-img {
  position: absolute;
  right: -30px;
  bottom: -5px;
}

#exitinitpopup .cta-modal-img img {
  max-width: 400px;
}

#exitinitpopup .exitinitpopup-font-16 {
  line-height: 1.6rem;
}

#exitinitpopup .contact-us-main {
  background-color: var(--clr-white);
}

#exitinitpopup .inner-content {
  background: #fff;
  border: none;
  padding: 0;
}

#exitinitpopup .country-wrap {
  display: flex;
  border-bottom: none;
}

#exitinitpopup .country-wrap .country-number .form-group .form-control {
  border-bottom: 1px solid rgb(230, 230, 230) !important;
}

#exitinitpopup .country-wrap .country-number .form-group .form-control:focus {
  border-bottom: 1px solid var(--clr-dark-black) !important;
  outline: none;
}

#exitinitpopup .may-b-later {
  text-transform: uppercase;
  color: #192020;
  padding: 16px 25px;
  border-radius: 30px;
  background: #fff;
  position: relative;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}

#exitinitpopup .may-b-later:hover {
  opacity: 0.8;
}

#exitinitpopup .country-code .SumoSelect > .CaptionCont {
  border-bottom: 1px solid rgb(230, 230, 230);
}

#exitinitpopup .hire-popup {
  background: var(--clr-black) !important;
}

#exitinitpopup .hire-popup span {
  color: var(--clr-white) !important;
}

#exitinitpopup .hire-popup::before {
  background: var(--clr-white);
}

#exitinitpopup .hire-popup:hover {
  box-shadow: inset 0 0 0 2px #192020 !important;
}

@media only screen and (max-width: 1199px) {
  #exitinitpopup .hire-popup:hover,
  #exitinitpopup .hire-popup:focus {
    outline: none;
  }
}

#exitinitpopup .hire-popup:hover span {
  color: var(--clr-black) !important;
}

@media only screen and (max-width: 1199px) {
  #exitinitpopup .hire-popup:hover span {
    color: var(--clr-white) !important;
  }
}

#exitinitpopup .hire-popup {
  border: 1px solid var(--clr-black);
}

#exitinitpopup .hire-popup .icon:before {
  background-color: var(--clr-white);
}

#exitinitpopup .hire-popup:hover .icon:before,
#exitinitpopup .hire-popup:focus .icon:before {
  background-color: var(--clr-black);
}

@media only screen and (max-width: 1199px) {
  #exitinitpopup .hire-popup:hover .icon:before,
  #exitinitpopup .hire-popup:focus .icon:before {
    background-color: var(--clr-white);
  }
}

#exitinitpopup .hire-popup:focus span {
  color: var(--clr-black) !important;
}

/* ----- css start for Exit Init Popup end ----- */

/* ----- start css industry services ------ */
.health-fit-hero-section {
  padding: 120px 0 500px 0;
}

.industry-counting-section {
  background-color: var(--clr-black);
}
.industry-counting-section .inner-grid-industry {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 210px;
}
@media only screen and (max-width: 1600px) {
  .industry-counting-section .inner-grid-industry {
    grid-gap: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .industry-counting-section .inner-grid-industry {
    grid-gap: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .industry-counting-section .inner-grid-industry {
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .industry-counting-section .inner-grid-industry {
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .industry-counting-section .inner-grid-industry {
    grid-gap: 25px;
    grid-template-columns: 1fr;
  }
}
.industry-counting-section .indus-box-size {
  /* border: solid 1px #83d14f; */
}
.industry-counting-section .indus-pink-bg {
  width: 50px;
  height: 6px;
  background: #ffc0d9;
}
@media only screen and (max-width: 575px) {
  .industry-counting-section .indus-pink-bg {
    display: none;
  }
}
.industry-counting-section .indus-purple-bg {
  width: 50px;
  height: 6px;
  background: #d0bfff;
}
@media only screen and (max-width: 575px) {
  .industry-counting-section .indus-purple-bg {
    width: 100%;
    height: 1px;
    margin-bottom: 5px;
  }
}
.industry-counting-section .indus-green-bg {
  width: 50px;
  height: 6px;
  background: #b5f1cc;
}
@media only screen and (max-width: 575px) {
  .industry-counting-section .indus-green-bg {
    width: 100%;
    height: 1px;
    margin-bottom: 5px;
  }
}
.industry-counting-section .indus-title {
  padding-top: 25px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .industry-counting-section .indus-title {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .industry-counting-section .indus-title {
    padding-top: 13px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 575px) {
  .industry-counting-section .indus-title-remove {
    padding-top: 0;
  }
}

.indus-tabs-section .nav {
  background-color: transparent;
  color: #10a8c3 !important;
}
.indus-tabs-section .nav .nav-item button.active {
  background-color: transparent;
  color: #191919 !important;
}
.indus-tabs-section .nav .nav-item .nav-link {
  position: relative;
  padding-left: 25px;
  font-size: 24px;
  font-weight: 500;
  color: #777777;
}
@media only screen and (min-width: 992px) and (max-width: 1365px) {
  .indus-tabs-section .nav .nav-item .nav-link {
    padding-left: 16px;
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .indus-tabs-section .nav .nav-item .nav-link {
    padding-left: 16px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .indus-tabs-section .nav .nav-item .nav-link {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 20px;
  }
}
.indus-tabs-section .nav .nav-item .nav-link::before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  left: 0;
  top: 22px;
  background-color: #777777;
}
@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .indus-tabs-section .nav .nav-item .nav-link::before {
    top: 21px;
    width: 4px;
    height: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .indus-tabs-section .nav .nav-item .nav-link::before {
    width: 100%;
    height: 1.5px;
    top: 40px;
    transition: width 0.3s linear 0.5s;
    background-color: transparent;
  }
}

.indus-tabs-section .nav .nav-item .nav-link.active {
  padding-left: 77px;
  font-size: 40px;
  transition: width 0.5s linear 0.5s;
  color: #777777;
}
@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  .indus-tabs-section .nav .nav-item .nav-link.active {
    padding-left: 77px;
    font-size: 34px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1365px) {
  .indus-tabs-section .nav .nav-item .nav-link.active {
    padding-left: 52px;
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .indus-tabs-section .nav .nav-item .nav-link.active {
    padding-left: 48px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .indus-tabs-section .nav .nav-item .nav-link.active {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 20px;
  }
}

.indus-tabs-section .nav .nav-item .nav-link.active:before {
  width: 60px;
  background-color: #191919;
  top: 34px;
  transition: width 0.3s linear 0.3s;
}
@media only screen and (min-width: 1366px) and (max-width: 1600px) {
  .indus-tabs-section .nav .nav-item .nav-link.active:before {
    top: 31px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1365px) {
  .indus-tabs-section .nav .nav-item .nav-link.active:before {
    width: 40px;
    top: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .indus-tabs-section .nav .nav-item .nav-link.active:before {
    width: 36px;
    top: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .indus-tabs-section .nav .nav-item .nav-link.active:before {
    width: 100%;
    height: 1.5px;
    top: 45px;
    transition: width 0.3s linear 0.5s;
  }
}

/* ------mobile view css-start------ */

@media only screen and (max-width: 767px) {
  .indus-tabs-section .nav {
    display: flex;
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow: auto;
    grid-column-gap: 20px;
    white-space: nowrap;
    padding-bottom: 0px;
    margin-bottom: 18px;
    border-bottom: solid 1px #cccccc;
    justify-content: center;
  }
}
@media only screen and (max-width: 375px) {
  .indus-tabs-section .nav {
    justify-content: start;
  }
}

/* ------mobile view css-end------ */

.col-content-right-part {
  max-width: 850px;
  margin-left: auto;
}
.indus-tabs-section .health-right-common {
  margin-top: 30px;
}
.indus-tabs-section .health-right-common img {
  border-radius: 24px;
  aspect-ratio: auto 133/66;
  height: auto;
}
.indus-tabs-section .health-right-common .item {
  display: flex;
}
.indus-tabs-section .from-public-t-b {
  padding: 22px 0px 30px 0;
}
@media only screen and (max-width: 767px) {
  .indus-tabs-section .from-public-t-b {
    padding: 22px 0px 0px 0;
  }
}
.indus-tabs-section .col-content-right-part .content-wrap {
  margin-top: 10px;
}
@media only screen and (max-width: 575px) {
  .indus-tabs-section .col-content-right-part .content-wrap {
    margin-top: 0;
  }
}
.indus-tabs-section .col-content-right-part .content-wrap ul {
  margin: 0;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .indus-tabs-section .col-content-right-part .content-wrap ul {
    margin: 0;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .indus-tabs-section .col-content-right-part .content-wrap ul {
    margin: 0;
    margin-bottom: 0;
  }
}

.indus-tabs-section .col-content-right-part .content-wrap li {
  text-decoration: none;
  list-style: none;
  line-height: 35px;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-left: 15px;
  margin-left: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .indus-tabs-section .col-content-right-part .content-wrap li {
    line-height: 30px;
    font-size: 16px;
    padding-left: 15px;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .indus-tabs-section .col-content-right-part .content-wrap li {
    line-height: 28px;
    font-size: 16px;
    padding-left: 15px;
    margin-left: 10px;
  }
}
.indus-tabs-section .col-content-right-part .content-wrap li:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  left: 0;
  top: 14px;
  background-color: #191919;
  border-radius: 10px;
}

/* -----start css all-industry-hero-section ------ */

@media only screen and (max-width: 991px) {
  .all-industry-hero-sec {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .all-industry-hero-sec {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .all-industry-hero-sec {
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .all-industry-hero-sec .services-new-hero-section {
    padding: 70px 0 150px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .all-industry-hero-sec .services-new-hero-section {
    padding: 50px 0 140px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1365px) {
  .all-industry-hero-sec .services-new-hero-section.serviceheroimg .services-hero-section__wrapper {
    transform: translateY(calc(-50% - 0px));
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .all-industry-hero-sec .services-new-hero-section .services-hero-section__wrapper {
    width: 440px;
    height: 440px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .all-industry-hero-sec .services-new-hero-section .services-hero-section__wrapper {
    width: 380px;
    height: 390px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1365px) {
  .all-industry-hero-sec .services-new-hero-section .services-hero-section__wrapper img {
    max-width: 100%;
    max-height: 100%;
  }
}
.industry-testimonial-sec {
  background: #ffffff;
}
@media only screen and (min-width: 1366px) {
  .industry-testimonial-sec {
    padding-top: 5px;
  }
}
.industry-testimonial-sec .section-services-new-client-testimonial {
  margin-bottom: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .industry-testimonial-sec .section-services-new-client-testimonial {
    margin-top: -80px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .industry-testimonial-sec .section-services-new-client-testimonial {
    margin-top: -80px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .industry-testimonial-sec .section-services-new-client-testimonial {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .industry-testimonial-sec .section-services-new-client-testimonial {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .industry-testimonial-sec .section-services-new-client-testimonial {
    margin-bottom: 35px;
  }
}
/* ----- css start for Exit Init Popup end ----- */

@media only screen and (max-width: 1199px) {
  #exitinitpopup .hire-popup:focus span {
    color: var(--clr-white) !important;
  }
}

/* start css section-simple-sales-bg  */

.section-simple-sales-bg {
  width: 100%;
  background: linear-gradient(180deg, #f0f0f0 50%, #ffffff 50%);
}
.simple-sales-bg-new {
  background-color: #ffd8c0;
  background-repeat: no-repeat;
  background-position: right;
  padding: 50px 15px;
  border-radius: 30px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1599px) {
  .simple-sales-bg-new {
    border-radius: 24px;
  }
}
@media screen and (max-width: 1023px) {
  .simple-sales-bg-new {
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .simple-sales-bg-new {
    padding: 30px 15px;
    border-radius: 16px;
  }
}
.simple-sales-title {
  font-size: 40px;
}
@media screen and (max-width: 1199px) {
  .simple-sales-title {
    font-size: 30px;
    line-height: 2.6rem;
  }
}
@media screen and (max-width: 991px) {
  .simple-sales-title {
    font-size: 28px;
    line-height: 2.4rem;
  }
}
@media screen and (max-width: 575px) {
  .simple-sales-title {
    font-size: 26px;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 425px) {
  .simple-sales-title {
    font-size: 21px;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 359px) {
  .simple-sales-title {
    font-size: 19px;
    line-height: 2.3rem;
  }
}

/* end css section-simple-sales-bg  */

/* -----end css all-industry-hero-section ------ */
/* ----- css start for Exit Init Popup end ----- */

/* ----- start faq new css gs-dec-9---- */

.newworkslider-area {
  margin-top: 80px;
}
@media screen and (max-width: 1599px) {
  .newworkslider-area {
    margin-top: 70px;
  }
}
/*@media screen and (min-width: 1200px) and (max-width:1499px){*/
/*    .newworkslider-area {*/
/* */
/*    }*/
/*}*/

@media screen and (max-width: 1199px) {
  .newworkslider-area {
    margin-top: 60px;
  }
}

@media screen and (max-width: 991px) {
  .newworkslider-area {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .newworkslider-area {
    margin-top: 25px;
  }
}

@media screen and (max-width: 575px) {
  .newworkslider-area {
    margin-top: 20px;
  }
}

.custslides .custslick-list {
  /*display: flex;*/
}
@media only screen and (min-width: 768px) {
  .custslides .custslick-list {
    display: flex;
  }
}

.custslides .slick-initialized .slick-slide {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .custslides .slick-initialized .slick-slide {
    display: block;
  }
}

.custslides .custslick-list .slick-list {
  padding: 0 7% 0 6%;
  display: flex;
}
@media only screen and (min-width: 2301px) {
  .custslides .custslick-list .slick-list {
    padding: 0 5% 0 15%;
  }
}
@media only screen and (min-width: 1921px) and (max-width: 2300px) {
  .custslides .custslick-list .slick-list {
    padding: 0 5% 0 10%;
  }
}
@media only screen and (min-width: 1800px) and (max-width: 1899px) {
  .custslides .custslick-list .slick-list {
    padding: 0 3% 0 4%;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .custslides .custslick-list .slick-list {
    padding: 0 3% 0 3%;
  }
}
@media only screen and (max-width: 1599px) {
  .custslides .custslick-list .slick-list {
    padding: 0 15px 0 65px;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
  .custslides .custslick-list .slick-list {
    padding: 0 15px 0 45px;
  }
}
@media only screen and (max-width: 991px) {
  .custslides .custslick-list .slick-list {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .slick-list {
    padding: 0 5px !important;
    display: block;
  }
}

.custslides .custslick-list .slick-track {
  display: flex !important;
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .slick-track {
    display: block !important;
  }
}

.custslides .custslick-list .slick-slide {
  margin: 0 15px;
  height: inherit !important;
  transition: transform 0.5s ease;
}

@media only screen and (min-width: 1366px) {
  .custslides .custslick-list .slick-slide {
    width: auto !important;
  }
}

@media only screen and (max-width: 991px) {
  .custslides .custslick-list .slick-slide {
    margin: 0 12px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .slick-slide {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .slick-slide {
    margin: 0 8px;
  }
}

.custslides .custslick-list .item {
  height: 100%;
  transition: transform 0.5s ease;
  display: block;
}
.custslides .custslick-list .item .content-wrap {
  padding: 50px;
  background-color: #ffffff;
  width: 530px;
  height: 100%;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
  -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
}

@media only screen and (min-width: 1700px) and (max-width: 1799px) {
  .custslides .custslick-list .item .content-wrap {
    width: 500px;
  }
}
@media only screen and (max-width: 1699px) {
  .custslides .custslick-list .item .content-wrap {
    width: 480px;
  }
}
@media only screen and (max-width: 1599px) {
  .custslides .custslick-list .item .content-wrap {
    padding: 30px 20px;
  }
}

.section-faq-dece .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.section-faq-dece .faq-box-dece-title {
  background: #f0f0f0;
  border: none;
  color: #191919;
  border-radius: 14px !important;
  align-items: self-start;
}
.section-faq-dece .faq-box-dece-title:hover {
  background: #e7e7e7;
  border: none;
  box-shadow: none;
}
.section-faq-dece .faq-box-dece-title:focus {
  border: none;
  box-shadow: none;
}
.section-faq-dece .faq-box-dece {
  background: #ffffff;
  border: none;
  box-shadow: none;
  border-radius: 14px;
  margin-bottom: 12px;
}
.section-faq-dece .faq-box-dece-space {
  padding: 10px 15px 10px 15px;
}
.section-faq-dece .faq-box-dece-space p {
  padding-top: 10px;
}
.section-faq-dece .faq-box-dece-space ul {
  margin: 0;
  padding: 0;
}
.section-faq-dece .faq-box-dece-space ul li {
  list-style: none;
  background: url("../img/check-arrow.svg") no-repeat;
  background-position: left 3px;
  padding-left: 30px;
  margin-top: 7px;
}
@media screen and (max-width: 1199px) {
  .section-faq-dece .faq-box-dece-space ul li {
    background: url("../img/check-arrow.svg") no-repeat;
    background-position: left 2px;
    padding-left: 28px;
  }
}

.section-faq-dece .accordion-button:not(.collapsed)::after {
  background: url("../img/arrow-data.svg") no-repeat;
}
.section-faq-dece .accordion-button::after {
  margin-top: 5px;
}

.sec-tabs-new-dece {
  width: 100%;
}
.sec-tabs-new-dece .menu-tabs {
  width: max-content;
  margin: 0 auto;
  background: #f0f0f0;
  border-radius: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .sec-tabs-new-dece .menu-tabs {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .sec-tabs-new-dece .menu-tabs {
    margin-bottom: 30px;
  }
}
.sec-tabs-new-dece .menu-tabs .nav-tabs {
  border-bottom: 0;
  padding: 4px 5px 5px 4px;
}
.sec-tabs-new-dece .menu-tabs .nav-tabs .nav-link.active {
  color: #191919;
  border-radius: 50px;
  background-color: #fff;
  border-color: transparent;
  border: none;
  box-shadow: none;
}
.sec-tabs-new-dece .menu-tabs .nav-tabs .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #495057;
  border-radius: 50px;
  background-color: transparent;
  border-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0.7rem 1.5rem;
}
@media screen and (max-width: 360px) {
  .sec-tabs-new-dece .menu-tabs .nav-tabs .nav-link {
    font-size: 14px;
    padding: 0.5rem 1rem;
  }
}
.sec-tabs-new-dece .faq-arrow-icon {
  margin: 10px 0 5px 0;
  background: url("../img/faq-arrow-icon.svg") no-repeat;
  background-position: left 8px;
  padding-left: 18px;
  padding-right: 25px;
}
.sec-tabs-new-dece .new-dece {
  padding: 10px 20px 1px 20px;
}

.faq p a {
  color: #ed184f;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.faq p a:hover {
  opacity: 0.9;
}

/* ----- end faq new css gs-dec-9---- */

/*newhomepage workslider css starts here*/

.newworkslider-area {
  margin-top: 80px;
}
@media screen and (max-width: 1599px) {
  .newworkslider-area {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1199px) {
  .newworkslider-area {
    margin-top: 60px;
  }
}
@media screen and (max-width: 991px) {
  .newworkslider-area {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .newworkslider-area {
    margin-top: 25px;
  }
}
@media screen and (max-width: 575px) {
  .newworkslider-area {
    margin-top: 20px;
  }
}
/* .custslides .custslick-list { */
  /* display: flex; */
/* } */
@media only screen and (min-width: 768px) {
  .custslides .custslick-list {
    display: flex;
  }
}

.custslides .slick-initialized .slick-slide {
  display: flex;
}

@media only screen and (max-width: 767px) {
  .custslides .slick-initialized .slick-slide {
    display: block;
  }
}

.custslides .custslick-list .slick-list {
  padding: 0 7% 0 6%;
  display: flex;
}
@media only screen and (min-width: 2301px) {
  .custslides .custslick-list .slick-list {
    padding: 0 5% 0 15%;
  }
}
@media only screen and (min-width: 1921px) and (max-width: 2300px) {
  .custslides .custslick-list .slick-list {
    padding: 0 5% 0 10%;
  }
}
@media only screen and (min-width: 1800px) and (max-width: 1899px) {
  .custslides .custslick-list .slick-list {
    padding: 0 3% 0 4%;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .custslides .custslick-list .slick-list {
    padding: 0 3% 0 3%;
  }
}
@media only screen and (max-width: 1599px) {
  .custslides .custslick-list .slick-list {
    padding: 0 15px 0 65px;
  }
}

@media only screen and (min-width: 1366px) and (max-width: 1499px) {
  .custslides .custslick-list .slick-list {
    padding: 0 15px 0 45px;
  }
}
@media only screen and (max-width: 991px) {
  .custslides .custslick-list .slick-list {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .slick-list {
    padding: 0 5px !important;
    display: block;
  }
}

.custslides .custslick-list .slick-track {
  display: flex !important;
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .slick-track {
    display: block !important;
  }
}

.custslides .custslick-list .slick-slide {
  margin: 0 15px;
  height: inherit !important;
  transition: transform 0.5s ease;
}

@media only screen and (min-width: 1366px) {
  .custslides .custslick-list .slick-slide {
    width: auto !important;
  }
}

@media only screen and (max-width: 991px) {
  .custslides .custslick-list .slick-slide {
    margin: 0 12px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .slick-slide {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .slick-slide {
    margin: 0 8px;
  }
}

.custslides .custslick-list .item {
  height: 100%;
  transition: transform 0.5s ease;
  display: block;
}
.custslides .custslick-list .item .content-wrap {
  padding: 50px;
  background-color: #ffffff;
  width: 530px;
  height: 100%;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
  -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
}

@media only screen and (min-width: 1700px) and (max-width: 1799px) {
  .custslides .custslick-list .item .content-wrap {
    width: 500px;
  }
}
@media only screen and (max-width: 1699px) {
  .custslides .custslick-list .item .content-wrap {
    width: 480px;
  }
}
@media only screen and (max-width: 1599px) {
  .custslides .custslick-list .item .content-wrap {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1499px) {
  .custslides .custslick-list .item .content-wrap {
    width: 430px;
  }
}

/*@media only screen and (max-width: 991px){*/
/*    .custslides .custslick-list .item .content-wrap {*/
/*        display: none;*/
/*    }*/
/*}*/
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .content-wrap {
    width: 100%;
    min-height: 556px;
  }
}
@media only screen and (max-width: 575px) {
  .custslides .custslick-list .item .content-wrap {
    min-height: 525px;
    /*background-color: green;*/
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .content-wrap {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.02));
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.02));
  }
}
@media only screen and (max-width: 375px) {
  .custslides .custslick-list .item .content-wrap {
    min-height: 560px;
  }
}

.custslides .custslick-list .item .content-wrap .label-wrap {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1599px) {
  .custslides .custslick-list .item .content-wrap .label-wrap {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .content-wrap .label-wrap {
    margin-bottom: 12px;
  }
}
.custslides .custslick-list .item .label-wrap .label-title {
  border-radius: 4px;
  display: inline-flex;
}

@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .label-wrap .label-title {
    font-size: 12px;
    line-height: 1.3rem;
  }
}

.custslides .custslick-list .item .designing {
  margin-top: 20px;
  margin-bottom: 2px;
}
@media only screen and (max-width: 1199px) {
  .custslides .custslick-list .item .designing {
    font-size: 16px;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .designing {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .designing {
    font-size: 16px;
    line-height: 1.6rem;
  }
}
.custslides .custslick-list .item .border-red {
  border: solid #ea1f52 1px;
}

.custslides .custslick-list .item .red-bg {
  background: #fde8ed;
  padding: 5px 10px 4px 10px;
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .red-bg {
    padding: 3px 10px 2px 10px;
  }
}

.custslides .custslick-list .item .font-red {
  color: #ea1f52;
}
.custslides .custslick-list .item .blue-light {
  color: #3b5068;
}
.custslides .custslick-list .item .title-pra-box {
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .custslides .custslick-list .item .title-pra-box .common-c-view {
    font-size: 25px;
    line-height: 2.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .title-pra-box .common-c-view {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .custslides .custslick-list .item .title-pra-box p {
    font-size: 1rem;
    line-height: 1.55rem;
  }
}

.custslides .custslick-list .item .label-menu-pont {
  width: 100%;
  margin-top: 20px;
}
/*@media only screen and (min-width: 768px) and (max-width: 1499px) {*/
/*    .custslides .custslick-list .item .label-menu-pont {*/
/*        margin-top: 20px;*/
/*    }*/
/*}*/
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .label-menu-pont {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .label-menu-pont {
    margin-top: 13px;
  }
}

.custslides .custslick-list .item .label-menu-pont ul {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .label-menu-pont ul {
    font-weight: 400;
  }
}
.custslides .custslick-list .item .label-menu-pont ul li {
  display: flex;
  margin-top: 10px;
}

@media only screen and (max-width: 575px) {
  .custslides .custslick-list .item .label-menu-pont ul li {
    margin-top: 5px;
  }
}

.custslides .custslick-list .item .label-menu-pont ul li:first-child {
  margin-top: 0;
}
.custslides .custslick-list .item .label-menu-pont ul li .icon {
  margin-right: 6px;
  margin-top: 3px;
  position: relative;
  flex: 0 0 28px;
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .custslides .custslick-list .item .label-menu-pont ul li .icon {
    margin-top: 2px;
  }
}
@media only screen and (max-width: 1199px) {
  .custslides .custslick-list .item .label-menu-pont ul li .icon {
    margin-top: 2px;
  }
}
@media only screen and (max-width: 991px) {
  .custslides .custslick-list .item .label-menu-pont ul li .icon {
    margin-right: 2px;
    margin-top: 1px;
  }
}
@media only screen and (max-width: 575px) {
  .custslides .custslick-list .item .label-menu-pont ul li .icon {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 375px) {
  .custslides .custslick-list .item .label-menu-pont ul li .icon {
    margin-top: 2px;
  }
}
.custslides .custslick-list .item .label-menu-pont ul li .icon::before {
  content: "";
  background-color: #192020;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: block;
  position: absolute;
  width: 80%;
  height: 80%;
  left: 0;
  top: 0;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
}
.custslides .custslick-list .item .label-menu-pont ul li .icon .icon-check-circle {
  width: 28px;
  height: 28px;
}

.custslides .custslick-list .item .img-wrapper {
  background: #ffffff;
  width: 1100px;
  height: 100%;
  position: relative;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
  -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
}
@media only screen and (max-width: 1799px) {
  .custslides .custslick-list .item .img-wrapper {
    width: 1085px;
  }
}

@media only screen and (min-width: 1600px) and (max-width: 1699px) {
  .custslides .custslick-list .item .img-wrapper {
    width: 980px;
  }
}
@media only screen and (min-width: 1500px) and (max-width: 1599px) {
  .custslides .custslick-list .item .img-wrapper {
    width: 850px;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1499px) {
  .custslides .custslick-list .item .img-wrapper {
    width: 800px;
  }
}
@media only screen and (max-width: 1365px) {
  .custslides .custslick-list .item .img-wrapper {
    width: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .custslides .custslick-list .item .img-wrapper {
    width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .img-wrapper {
    width: 100%;
    min-height: 557px;
  }
}

@media only screen and (max-width: 575px) {
  .custslides .custslick-list .item .img-wrapper {
    width: auto;
    min-height: 525px;
    /*background-color: red;*/
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .img-wrapper {
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.02));
    -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.02));
  }
}
@media only screen and (max-width: 375px) {
  .custslides .custslick-list .item .img-wrapper {
    min-height: 560px;
  }
}
.custslides .custslick-list .item .img-wrapper .img-wrap {
  height: 400px;
}
@media only screen and (min-width: 1366px) and (max-width: 1499px) {
  .custslides .custslick-list .item .img-wrapper .img-wrap {
    height: 300px;
  }
}
@media only screen and (max-width: 1365px) {
  .custslides .custslick-list .item .img-wrapper .img-wrap {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .img-wrapper .img-wrap {
    height: 260px;
  }
}
@media only screen and (max-width: 575px) {
  .custslides .custslick-list .item .img-wrapper .img-wrap {
    height: 220px;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .img-wrapper .img-wrap {
    height: 180px;
  }
}
@media only screen and (max-width: 375px) {
  .custslides .custslick-list .item .img-wrapper .img-wrap {
    height: 135px;
  }
}
.custslides .custslick-list .item .img-wrapper .img-wrap picture {
  display: block;
  height: 100%;
}
.custslides .custslick-list .item .img-wrapper .icon-wrap {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 99em;
  border: 1px solid #3b5068;
  right: 40px;
  top: 40px;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1365px) {
  .custslides .custslick-list .item .img-wrapper .icon-wrap {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .custslides .custslick-list .item .img-wrapper .icon-wrap {
    top: 30px;
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .img-wrapper .icon-wrap {
    top: 15px;
    right: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .custslides .custslick-list .item .img-wrapper .icon-wrap {
    width: 40px;
    height: 40px;
    display: none;
  }
}
.custslides .custslick-list .item .img-wrapper .icon-wrap img {
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 575px) {
  .custslides .custslick-list .item .img-wrapper .icon-wrap img {
    max-width: 60%;
  }
}
.custslides .custslick-list .item .img-wrapper .icon-wrap:hover img {
  transform: rotate(45deg);
}

.custslides .custslick-list .item .img-wrapper img.big-img {
  border-radius: 40px 40px 0 0;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1023px) {
  .custslides .custslick-list .item .img-wrapper img.big-img {
    border-radius: 16px 16px 0 0;
  }
}
@media only screen and (max-width: 1599px) {
  .custslides .custslick-list .item .img-wrapper img.big-img.last {
    object-position: left;
  }
}

.custslides .custslick-list .item .img-wrapper .short-wrap {
  background-color: #ffffff;
}

.custslides .custslick-list .item .shot-wrrap {
  padding: 40px;
  border-radius: 0px 0px 40px 40px;
  height: calc(100% - 400px);
}
@media only screen and (max-width: 1599px) {
  .custslides .custslick-list .item .shot-wrrap {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1499px) {
  .custslides .custslick-list .item .shot-wrrap {
    height: calc(100% - 300px);
  }
}
@media only screen and (max-width: 1365px) {
  .custslides .custslick-list .item .shot-wrrap {
    height: calc(100% - 300px);
  }
}
@media only screen and (max-width: 1023px) {
  .custslides .custslick-list .item .shot-wrrap {
    border-radius: 0px 0px 16px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .shot-wrrap {
    padding: 20px 15px;
    height: calc(100% - 260px);
  }
}
@media only screen and (max-width: 575px) {
  .custslides .custslick-list .item .shot-wrrap {
    height: calc(100% - 220px);
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .shot-wrrap {
    height: calc(100% - 180px);
  }
}
@media only screen and (max-width: 375px) {
  .custslides .custslick-list .item .shot-wrrap {
    height: calc(100% - 135px);
  }
}

.custslides .custslick-list .item .shot-wrrap-main {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 40px;
  height: 100%;
}
@media only screen and (max-width: 1499px) {
  .custslides .custslick-list .item .shot-wrrap-main {
    grid-column-gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .custslides .custslick-list .item .shot-wrrap-main {
    grid-column-gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .shot-wrrap-main {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .wrrap-title-left .main-title {
    margin: 0 0 10px;
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .wrrap-title-left .main-title {
    margin: 0 0 5px;
  }
}

.custslides .custslick-list .item .wrrap-title-left .main-title span {
  cursor:
    url("../img/cursor-img.svg") 30 30,
    auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .custslides .custslick-list .item .wrrap-title-left .main-title span {
    font-size: 25px;
    line-height: 2.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .custslides .custslick-list .item .wrrap-title-left .main-title span {
    font-size: 18px;
    line-height: 1.5rem;
    cursor:
      url("../img/cursor-small-img.svg") 15 15,
      auto;
  }
}

.custslides .custslick-list .item .label-wrap {
  margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .custslides .custslick-list .item .label-wrap {
    margin-bottom: 12px;
  }
}
.custslides .custslick-list .item .para-text-right {
  margin-top: 5px;
}
@media only screen and (max-width: 1365px) {
  .custslides .custslick-list .item .para-text-right {
    margin-top: 0;
  }
}

.newworkslider-area .cust-btn-wrap {
  margin-top: 50px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .newworkslider-area {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .newworkslider-area .cust-btn-wrap {
    margin-top: 35px;
  }
}

@media screen and (max-width: 575px) {
  .newworkslider-area .cust-btn-wrap {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 375px) {
  .newworkslider-area .cust-btn-wrap {
    flex-direction: column;
  }
}
.newworkslider-area .cust-btn-wrap .arrow-btn {
  position: absolute;
  width: 100%;
  border: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 575px) {
  .newworkslider-area .cust-btn-wrap .arrow-btn {
    position: relative;
    justify-content: end;
    gap: 15px;
    width: auto;
  }
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--clr-black);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  top: 0;
  left: auto;
  right: auto;
}

@media only screen and (max-width: 1365px) {
  .newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn {
    width: 48px;
    height: 48px;
  }
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--clr-black);
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
@media only screen and (max-width: 1199px) {
  .newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:before {
    transition: none;
  }
}
.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:hover:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:hover span {
  color: var(--clr-white);
  position: relative;
}
.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn .icon {
  width: 24px;
  height: 24px;
}

.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:hover .icon {
  position: relative;
}
.newworkslider-area .cust-btn-wrap .arrow-btn .slide-com-btn:hover .icon:before {
  background-color: var(--clr-white);
}

.newworkslider-area .cust-btn-wrap .view-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media only screen and (max-width: 575px) {
  .newworkslider-area .cust-btn-wrap .view-btns {
    justify-content: start;
    width: 100%;
  }
}

@media only screen and (max-width: 575px) {
  .newworkslider-area .cust-btn-wrap .view-btns .btn-slide-pink {
    display: none;
  }
}
/*btn-slide-border css starts here*/

.btn-slide-border {
  text-transform: uppercase;
  color: #3b5068;
  padding: 16px 25px;
  justify-content: center;
  border-radius: 30px;
  background: #fff;
  display: inline-flex;
  position: relative;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    outline 0.3s ease;
  border: 1px solid #3b5068;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}
@media only screen and (max-width: 1599px) {
  .btn-slide-border {
    padding: 12px 22px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-slide-border {
    padding: 10px 16px;
    gap: 6px;
    transition: none;
  }
}

@media only screen and (max-width: 480px) {
  .btn-slide-border {
    width: max-content;
  }
}

.btn-slide-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ed184f;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
@media only screen and (max-width: 1199px) {
  .btn-slide-border:before {
    display: none;
  }
}

.btn-slide-border:hover,
.btn-slide-border:focus {
  color: #ffffff;
  outline: none;
}
@media only screen and (max-width: 1199px) {
  .btn-slide-border:hover,
  .btn-slide-border:focus {
    color: #3b5068;
  }
}
.btn-slide-border:hover:before,
.btn-slide-border:focus:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.btn-slide-border .icon,
.btn-slide-border .material-symbols-rounded {
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .btn-slide-border .icon,
  .btn-slide-border .material-symbols-rounded {
    transform: rotate(45deg);
  }
}

.btn-slide-border .icon:before {
  background-color: #3b5068;
}

.btn-slide-border span {
  position: relative;
}

.btn-slide-border:hover i,
.btn-slide-border:focus i {
  /*filter: invert(1) brightness(1);*/
  transform: rotate(45deg);
}

@media only screen and (max-width: 1199px) {
  .btn-slide-border:hover i,
  .btn-slide-border:focus i {
    /*filter: invert(0) brightness(1);*/
  }
}

.btn-slide-border:hover .icon:before,
.btn-slide-border:focus .icon:before {
  background-color: #ffffff;
}
@media only screen and (max-width: 1199px) {
  .btn-slide-border:hover .icon:before,
  .btn-slide-border:focus .icon:before {
    background-color: #3b5068;
  }
}

/*btn-slide-pink css starts here*/

.btn-slide-pink {
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px 25px;
  justify-content: center;
  border-radius: 30px;
  background: #ed184f;
  display: inline-flex;
  position: relative;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    outline 0.3s ease;
  border: 1px solid #8e0e2f;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}
@media only screen and (max-width: 1599px) {
  .btn-slide-pink {
    padding: 12px 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .btn-slide-pink {
    transition: none;
  }
}
@media only screen and (max-width: 767px) {
  .btn-slide-pink {
    padding: 10px 16px;
    gap: 6px;
  }
}
@media only screen and (max-width: 480px) {
  .btn-slide-pink {
    width: max-content;
  }
}

.btn-slide-pink:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.btn-slide-pink:hover,
.btn-slide-pink:focus {
  color: #3b5068;
  border-color: #3b5068;
  outline: none;
}
@media only screen and (max-width: 1199px) {
  .btn-slide-pink:hover,
  .btn-slide-pink:focus {
    color: #ffffff;
    border-color: #8e0e2f;
  }
}

.btn-slide-pink:hover .icon:before,
.btn-slide-pink:focus .icon:before {
  background-color: #3b5068;
}

.btn-slide-pink:hover:before,
.btn-slide-pink:focus:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

@media only screen and (max-width: 1199px) {
  .btn-slide-pink:hover:before,
  .btn-slide-pink:focus:before {
    display: none;
  }
}

.btn-slide-pink .icon,
.btn-slide-pink .material-symbols-rounded {
  transition: transform 0.3s ease;
}
@media only screen and (max-width: 1199px) {
  .btn-slide-pink .icon,
  .btn-slide-pink .material-symbols-rounded {
    transition: none;
    transform: rotate(45deg);
  }
}

.btn-slide-pink span {
  position: relative;
}
.btn-slide-pink .icon:before {
  background-color: #ffffff;
}

.btn-slide-pink:hover i,
.btn-slide-pink:focus i {
  /*filter: invert(1) brightness(0);*/
  transform: rotate(45deg);
}
@media only screen and (max-width: 1199px) {
  .btn-slide-pink:hover .icon:before,
  .btn-slide-pink:focus .icon:before {
    /*filter: invert(1) brightness(1);*/
    background-color: #ffffff;
  }
}
/*newhomepage workslider css ends here*/

/*home page portfolio slider section starts here*/
@media only screen and (max-width: 1599px) {
  .home-page.portfolio-listing-page .portfolio-container {
    width: 100%;
  }
}
.home-page.portfolio-listing-page .section-portfolio-slider .portfolio-slide-main .item {
  margin: 0 2px;
}
@media screen and (max-width: 1199px) {
  .home-page.portfolio-listing-page .section-portfolio-slider {
    margin-top: 50px;
    padding-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .home-page.portfolio-listing-page .section-portfolio-slider {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .home-page.portfolio-listing-page .section-portfolio-slider {
    margin-top: 25px;
  }
}

@media screen and (max-width: 575px) {
  .home-page.portfolio-listing-page .section-portfolio-slider {
    margin-top: 20px;
  }
}
/*home page portfolio slider section starts here*/

.portfolio-listing-page .section-portfolio-slider {
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .portfolio-listing-page .section-portfolio-slider {
    padding-top: 45px;
  }
}
.home-page.portfolio-listing-page .section-portfolio-slider:before {
  display: none;
}
.portfolio-listing-page .section-portfolio-slider:before {
  content: "";
  position: absolute;
  height: 576px;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-color: var(--clr-white);
}
@media only screen and (max-width: 1199px) {
  .portfolio-listing-page .section-portfolio-slider:before {
    height: 476px;
  }
}
.portfolio-listing-page .section-portfolio-slider .mi-container {
  position: relative;
}
/*newportfolio listing slider css starts here*/

.portfolio-container {
  max-width: 1710px;
  margin: 0 auto;
}
@media only screen and (max-width: 1899px) {
  .portfolio-container {
    width: 90%;
  }
}
@media only screen and (max-width: 1699px) {
  .portfolio-container {
    width: 95%;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-container {
    width: 100%;
  }
}

.section-portfolio-slider .portfolio-list-wrapper.mt-80 {
  margin-top: 80px;
}

@media screen and (max-width: 1599px) {
  .section-portfolio-slider .portfolio-list-wrapper.mt-80 {
    margin-top: 70px;
  }
}

@media screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-list-wrapper.mt-80 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 991px) {
  .section-portfolio-slider .portfolio-list-wrapper.mt-80 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-list-wrapper.mt-80 {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-list-wrapper {
    padding-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .home-page.portfolio-listing-page .section-portfolio-slider .portfolio-list-wrapper {
    padding-top: 0;
  }
}
.section-portfolio-slider .portfolio-outer {
  position: relative;
}
.section-portfolio-slider .portfolio-slide-main {
  position: relative;
}

@media screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-slide-main .PortfolioListSlider {
    border-radius: 35px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-portfolio-slider .portfolio-slide-main .PortfolioListSlider {
    border-radius: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-slide-main .PortfolioListSlider {
    border-radius: 20px;
  }
}
@media screen and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .PortfolioListSlider {
    border-radius: 16px;
  }
}

.section-portfolio-slider .portfolio-slide-main .PortfolioListSlider .owl-stage-outer .owl-stage {
  display: flex;
}
.section-portfolio-slider .portfolio-slide-main .item {
  height: 100%;
}

.section-portfolio-slider .portfolio-slide-main .our-work {
  display: flex;
  width: 100%;
  background-color: var(--clr-white);
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work {
    display: block;
  }
}

.section-portfolio-slider .portfolio-slide-main .item .our-work {
  min-height: 100%;
  overflow: hidden;
  border-radius: 40px;
}

@media screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-slide-main .item .our-work {
    border-radius: 35px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-portfolio-slider .portfolio-slide-main .item .our-work {
    border-radius: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-slide-main .item .our-work {
    border-radius: 20px;
  }
}
@media screen and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .item .our-work {
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .item .our-work {
    display: flex;
    flex-direction: column;
  }
}

.section-portfolio-slider .portfolio-slide-main .our-work .our-work-left {
  width: 50%;
}
.section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img {
  border-radius: 40px 0 0 40px;
  height: 100%;
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    border-radius: 35px 0 0 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    border-radius: 30px 0 0 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    border-radius: 20px 0 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    border-radius: 16px 0 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    height: 250px;
    border-radius: 16px 16px 0 0;
  }
}
@media only screen and (max-width: 575px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    height: 220px;
  }
}
@media only screen and (max-width: 375px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    height: 135px;
  }
}
.section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img picture {
  display: block;
  height: 100%;
}
.section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img.object-top img {
  object-position: top;
}
.section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
  aspect-ratio: auto 840/598;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 0 0 40px;
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 35px 0 0 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 30px 0 0 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 20px 0 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 16px 0 0 16px;
  }
}
@media only screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 16px 16px 0 0;
    object-position: top;
  }
}
@media screen and (max-width: 1599px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left {
    width: 45%;
  }
}

@media screen and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-left {
    width: 100%;
  }
}

.section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  border: 1px solid #eaecf4;
  border-left: none;
  padding: 40px;
  border-radius: 0 40px 40px 0;
}
@media screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    padding: 35px;
    border-radius: 0 35px 35px 0;
  }
}
@media screen and (max-width: 1599px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    width: 55%;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    padding: 30px;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    gap: 20px;
    border-radius: 0 20px 20px 0;
    padding: 25px;
  }
}
@media screen and (max-width: 1023px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    width: 60%;
  }
}
@media screen and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    border-radius: 0 16px 16px 0;
    padding: 25px 22px;
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    padding: 20px 16px 28px 16px;
    gap: 15px;
    width: 100%;
    border: none;
    flex: auto;
    border-radius: 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 575px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    padding: 20px 16px 28px 16px;
  }
}
@media screen and (max-width: 480px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right {
    padding: 15px 15px 20px 15px;
    gap: 10px;
  }
}

.section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .label-title {
  padding: 0px 8px 0px 8px;
  display: inline-block;
  border-radius: 4px;
  margin: 0 6px 8px 0;
  border: 1px solid #3b5068;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .label-title {
    display: none;
  }
}
.section-portfolio-slider .portfolio-slide-main .our-work .portfolio-title {
  padding-right: 50px;
}
@media screen and (max-width: 1499px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .portfolio-title {
    font-size: 28px;
    line-height: 2.4rem;
    padding-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .portfolio-title {
    font-size: 24px;
    line-height: 2.2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .portfolio-title {
    font-size: 18px;
    line-height: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .portfolio-title {
    font-size: 20px;
    line-height: 1.6rem;
  }
}

@media screen and (max-width: 1365px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .topside p {
    display: none;
  }
}

.section-portfolio-slider .portfolio-slide-main .our-work .clr-red {
  color: #ed184f;
}
.section-portfolio-slider .portfolio-slide-main .our-work .app-features {
  margin-top: 15px;
}
@media screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .app-features {
    margin-top: 0;
  }
}

.section-portfolio-slider .portfolio-slide-main .our-work .app-features ul li {
  margin: 0 3px 2px 0;
  display: inline;
  align-items: center;
}

.section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .btn-wrapper {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-border {
    padding: 10px 12px;
  }
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-pink {
    padding: 10px 12px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-border span {
    font-size: 14px;
    line-height: 28px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-pink span {
    font-size: 14px;
    line-height: 28px;
  }
}
@media screen and (min-width: 481px) and (max-width: 575px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-border span {
    font-size: 12px;
    line-height: 26px;
  }
}
@media screen and (min-width: 481px) and (max-width: 575px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-pink span {
    font-size: 12px;
    line-height: 26px;
  }
}

.section-portfolio-slider .portfolio-slide-main .our-work .btn-slide-border {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .btn-slide-border {
    font-size: 14px;
  }
}
@media only screen and (max-width: 375px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .btn-slide-border {
    padding: 8px 15px;
    font-size: 14px;
  }
}

.section-portfolio-slider .portfolio-slide-main .our-work .btn-slide-pink {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .btn-slide-pink {
    font-size: 14px;
  }
}
@media only screen and (max-width: 480px) {
  .section-portfolio-slider .portfolio-slide-main .our-work .btn-slide-pink {
    display: none;
  }
}

.section-portfolio-slider .portfolio-outer .swipe-btn-outer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-outer .swipe-btn-outer {
    justify-content: end;
    top: 48px;
    right: 30px;
    left: auto;
  }
}
@media only screen and (max-width: 1365px) {
  .section-portfolio-slider .portfolio-outer .swipe-btn-outer {
    height: 48px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-outer .swipe-btn-outer {
    top: 40px;
    right: 25px;
    left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-outer .swipe-btn-outer {
    display: none;
  }
}

.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav {
    justify-content: end;
    top: 48px;
    right: 30px;
    left: auto;
  }
}
@media only screen and (max-width: 1365px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav {
    height: 48px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav {
    top: 40px;
    right: 25px;
    left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav {
    display: none;
  }
}
.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #192020;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: var(--clr-white);
  top: 10px;
  left: auto;
  right: auto;
}

@media only screen and (max-width: 1365px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button {
    height: 48px;
    width: 48px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button {
    height: 40px;
    width: 40px;
  }
}

.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #192020;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button:hover:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav .owl-prev {
  left: -95px;
}
@media only screen and (min-width: 1700px) and (max-width: 1899px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav .owl-prev {
    left: -85px;
  }
}
@media only screen and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav .owl-prev {
    left: auto;
    right: 0;
    top: 0;
  }
}

.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav .owl-next {
  right: -95px;
}
@media only screen and (min-width: 1700px) and (max-width: 1899px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav .owl-next {
    right: -85px;
  }
}
@media only screen and (max-width: 1699px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav .owl-next {
    left: 0;
    right: auto;
    top: 0;
  }
}
.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button:hover,
.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button:focus {
  outline: none;
}

.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button .icon {
  position: relative;
  transition: color 0.3s;
}

@media only screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button .icon {
    transition: none;
    width: 20px;
    height: 20px;
  }
}

.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button:hover .icon:before {
  background-color: var(--clr-white);
}

.section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button span {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-black);
}

@media only screen and (max-width: 1199px) {
  .section-portfolio-slider .portfolio-outer .portfolio-slide-main .owl-nav button span {
    transition: none;
  }
}

/*newportfolio listing slider css ends here*/

/*all case study lists css ends here*/

.homeworkslides .workslidelist {
  display: flex;
}
.homeworkslides .workslidelist .slick-track {
  display: flex !important;
}
.homeworkslides .workslidelist .slick-slide {
  margin: 0 15px;
  height: inherit !important;
  transition: transform 0.5s ease;
}
@media only screen and (min-width: 1366px) {
  .homeworkslides .workslidelist .slick-slide {
    width: auto !important;
  }
}
.homeworkslides .slick-initialized .slick-slide {
  display: flex;
}
.homeworkslides .workslidelist .item {
  height: 100%;
  transition: transform 0.5s ease;
  display: block;
}
.homeworkslides .workslidelist .item .inner-wrapper {
  position: relative;
  background-color: #ffffff;
  width: 530px;
}
.homeworkslides .workslidelist .item .content-wrap {
  padding: 50px;
  position: relative;
  height: 100%;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
  -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
}
.homeworkslides .workslidelist .item .content-wrap .label-wrap {
  margin-bottom: 30px;
}
.homeworkslides .workslidelist .item .label-wrap .label-title {
  border-radius: 4px;
  display: inline-flex;
  color: #f14672;
  background: #fde8ed;
  padding: 5px 10px 4px 10px;
  border: solid #f14672 1px;
}

.homeworkslides .workslidelist .item .title-pra-box p {
  margin-top: 20px;
}
.homeworkslides .workslidelist .item .label-menu-pont {
  margin-top: 20px;
}
.homeworkslides .workslidelist .item .label-menu-pont ul {
  margin: 0;
  padding: 0;
}
.homeworkslides .workslidelist .item .label-menu-pont ul li {
  display: flex;
  margin-top: 10px;
}
.homeworkslides .workslidelist .item .label-menu-pont ul li:first-child {
  margin-top: 0;
}
.homeworkslides .workslidelist .item .label-menu-pont ul li .icon {
  margin-right: 6px;
  margin-top: 3px;
  position: relative;
}
.homeworkslides .workslidelist .item .label-menu-pont ul li .icon::before {
  content: "";
  background-color: #192020;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  display: block;
  position: absolute;
  width: 80%;
  height: 80%;
  left: 0;
  top: 0;
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease;
}

/*new listing section*/
/*all case study lists css starts here*/
.section-case-study-lists {
  padding-top: 65px;
}
@media only screen and (max-width: 1499px) {
  .section-case-study-lists {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists {
    padding-top: 35px;
  }
}
@media only screen and (max-width: 480px) {
  .section-case-study-lists {
    padding-top: 20px;
  }
}

.section-case-study-lists .item-wrapper {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.section-case-study-lists .section-pf-listing .pf-main {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
@media only screen and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main {
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .section-case-study-lists .section-pf-listing .pf-main {
    grid-gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main {
    margin-top: 25px;
  }
}

@media screen and (max-width: 575px) {
  .section-case-study-lists .section-pf-listing .pf-main {
    margin-top: 20px;
  }
}
.section-case-study-lists .section-pf-listing .pf-main .pf-row {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-row {
    gap: 30px;
  }
}
@media screen and (max-width: 991px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-row {
    gap: 15px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-row {
    display: flex;
  }
}
@media screen and (max-width: 575px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .pf-item {
  width: 33.17%;
  position: relative;
  /*border: 1px solid red;*/
  border-radius: 40px;
  background-color: #ffffff;
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item {
    border-radius: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item {
    border-radius: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item {
    width: calc(50% - 10px);
    border-radius: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item {
    border-radius: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item {
    width: 100%;
  }
}
.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item {
  width: 68.83%;
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 575px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item {
    width: 100%;
  }
}
.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display {
  height: 400px;
  border-radius: 40px 40px 0 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display {
    border-radius: 35px 35px 0 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display {
    border-radius: 30px 30px 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display {
    height: 300px;
    border-radius: 20px 20px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display {
    height: 220px;
    border-radius: 16px 16px 0 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display {
    height: 150px;
  }
}
@media only screen and (max-width: 375px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display {
    height: 135px;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display img.big-img {
  border-radius: 40px 40px 0 0;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display img.big-img {
    border-radius: 35px 35px 0 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display img.big-img {
    border-radius: 30px 30px 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display img.big-img {
    border-radius: 20px 20px 0 0;
  }
}
@media only screen and (max-width: 991px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display img.big-img {
    border-radius: 16px 16px 0 0;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display .new-label-title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 8px 0px 8px;
  height: 26px;
  width: max-content;
  z-index: 2;
  line-height: 0;
  font-weight: 400;
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display .new-label-title {
    left: 35px;
    bottom: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display .new-label-title {
    left: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display .new-label-title {
    left: 25px;
    bottom: 25px;
  }
}
@media only screen and (max-width: 991px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display .new-label-title {
    left: 22px;
    bottom: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display .new-label-title {
    left: 15px;
    bottom: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display .new-label-title {
    padding: 3px 10px 3px 10px;
    left: 20px;
    bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .pf-display .new-label-title {
    padding: 3px 10px 2px 10px;
    font-size: 12px;
    line-height: 1.3rem;
    left: 15px;
    bottom: 15px;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .label-title {
  display: none;
}
.section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display .icon-wrap {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 99em;
  border: 1px solid #3b5068;
  right: 40px;
  top: 40px;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1365px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display .icon-wrap {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display .icon-wrap {
    top: 20px;
    right: 20px;
    transform: rotate(0deg);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display .icon-wrap {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 15px;
  }
}
@media only screen and (max-width: 575px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display .icon-wrap {
    width: 40px;
    height: 40px;
    max-width: 60%;
  }
}

@media only screen and (max-width: 480px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display .icon-wrap {
    right: 15px;
    top: 15px;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .pf-item .pf-display .icon-wrap img {
  transition: transform 0.3s ease;
}

.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item a {
  cursor:
    url("../img/cursor-img.svg") 15 15,
    auto;
}
@media only screen and (max-width: 1365px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item a {
    cursor:
      url("../img/cursor-small-listing-medium.svg") 24 24,
      auto;
  }
}
@media only screen and (max-width: 575px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item a {
    cursor:
      url("../img/cursor-small-listing-mobile.svg") 20 20,
      auto;
  }
}
@media only screen and (max-width: 480px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item a {
    font-size: 20px;
    line-height: 1.5rem;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item a:hover,
.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item a:focus {
  outline: none;
}
.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item a:hover .pf-display .icon-wrap {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in;
}

.section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap {
  padding: 40px;
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
  -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.05));
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap {
    padding: 35px;
    border-radius: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap {
    padding: 31px 30px 30px;
    border-radius: 30px;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
  border-radius: 0px 0px 40px 40px;
  height: calc(100% - 400px);
}
@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
    padding: 35px;
    border-radius: 0 0 35px 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
    padding: 30px;
    border-radius: 0 0 30px 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
    padding: 25px;
    border-radius: 0px 0px 20px 20px;
    height: calc(100% - 300px);
  }
}
@media only screen and (max-width: 991px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
    border-radius: 0px 0px 16px 16px;
    padding: 25px 22px;
    height: calc(100% - 220px);
  }
}
@media only screen and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
    padding: 22px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
    height: calc(100% - 150px);
    padding: 17px 15px;
  }
}
@media only screen and (max-width: 480px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
    padding: 18px 15px;
  }
}
@media only screen and (max-width: 375px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap {
    height: calc(100% - 135px);
  }
}
.section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap .label-title {
  border: 1px solid #ea1f52;
  color: #ea1f52;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 8px 0px 8px;
  margin-bottom: 20px;
  width: max-content;
  height: 26px;
  line-height: 0;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap .label-title {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap .label-title {
    margin-bottom: 12px;
    padding: 3px 10px 2px 10px;
    font-size: 12px;
    line-height: 1.3rem;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .label-title {
  border-color: #3b5068;
  color: #3b5068;
}
.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap {
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap {
    display: flex;
    flex-direction: column;
    grid-gap: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap .common-c-view {
    font-size: 18px;
    line-height: 1.6rem;
  }
}

@media only screen and (max-width: 575px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap .common-c-view {
    font-size: 24px;
    line-height: 2.2rem;
  }
}
@media only screen and (max-width: 480px) {
  .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap .common-c-view {
    font-size: 20px;
    line-height: 1.6rem;
  }
}

/*.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap a{*/
/*    cursor: url("../img/cursor-img.svg") 30 30, auto;*/
/*}*/

/*@media only screen and (max-width: 480px){*/
/*    .section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap a{*/
/*        font-size: 20px;*/
/*        line-height: 1.5rem;*/
/*        cursor: url("../img/cursor-small-img.svg") 15 15, auto;*/
/*    }*/
/*}*/

.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .list-wrap a:hover,
.section-pf .pf-main .big-width.pf-item .content-wrap .list-wrap a:focus {
  outline: none;
}

.section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap .list-wrap {
  display: block;
  margin: 0 0 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap .list-wrap .common-c-view {
    font-size: 25px;
    line-height: 2.3rem;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .big-width.pf-item .content-wrap .para-text {
  margin-top: 0;
}
.section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap .para-text {
  margin-top: 21px;
}

.section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap .service-points {
  margin-top: auto;
}
.section-case-study-lists .section-pf-listing .pf-main .pf-item .content-wrap .service-points ul li {
  margin: 0 4px 2px 0;
  display: inline;
  align-items: center;
}

.section-case-study-lists .section-pf-listing .pf-main .pf-item.cta-wrap .content-wrap {
  background: url("../img/portfolio-listing/webp/cta-bg.webp") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section-case-study-lists .section-pf-listing .pf-main .pf-item.cta-wrap .content-wrap .list-wrap {
  max-width: 370px;
}
.section-case-study-lists .section-pf-listing .pf-main .pf-item.cta-wrap .content-wrap .common-c-view {
  color: var(--clr-white);
  font-weight: 700;
  font-size: 48px;
  line-height: 3.4rem;
  letter-spacing: -0.04rem;
}

.section-case-study-lists .section-pf-listing .pf-main .pf-item picture {
  display: block;
  height: 100%;
}

.section-case-study-lists .section-pf-listing .pf-main .extra-content {
  background: url("../img/portfolio-listing/webp/cta-bg.webp") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  padding: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 40px;
}

@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .section-case-study-lists .section-pf-listing .pf-main .extra-content {
    border-radius: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .section-case-study-lists .section-pf-listing .pf-main .extra-content {
    border-radius: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .extra-content {
    border-radius: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .section-case-study-lists .section-pf-listing .pf-main .extra-content {
    border-radius: 20px;
  }
}

.section-case-study-lists .section-pf-listing .pf-main .extra-content .mobile-cta-wrap {
  max-width: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
@media only screen and (max-width: 1199px) {
  .section-case-study-lists .section-pf-listing .pf-main .extra-content .mobile-cta-wrap {
    gap: 15px;
  }
}

.has-black-check .projects-delivered__item .icon::before {
  background-color: #444444;
}
.has-black-check .projects-delivered__item ul li {
  align-items: flex-start;
}

.section-case-study-lists .section-pf-listing .pf-main .extra-content .mobile-cta-wrap .btn-slide-pink {
  width: max-content;
  margin: 0 auto;
}

.loading-image-wrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.loading-image-wrap img {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
  height: 100%;
}

@media only screen and (max-width: 1599px) {
  .loading-image-wrap {
    height: 100%;
  }
}
.hero-section.homehero-section .loading-image-wrap img {
  object-position: top -9.5vw left 0vw;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .hero-section.homehero-section .loading-image-wrap img {
    object-fit: contain;
  }
}

/*popup case study section css starts here*/

.popup-case-study .our-case-study-main .swiper-slide .our-work {
  padding: 20px 20px 80px 20px;
}
@media only screen and (max-width: 767px) {
  .popup-case-study .our-case-study-main .swiper-slide .our-work {
    padding: 15px 15px 80px 15px;
  }
}
@media only screen and (max-width: 575px) {
  .popup-case-study .our-case-study-main .swiper-slide .our-work .our-work-left {
    margin-bottom: 20px;
  }
}

.popup-case-study .our-work .our-work-left .portfolio-img {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .popup-case-study .our-work .our-work-left .portfolio-img {
    height: auto !important;
  }
}

.popup-case-study .our-work .our-work-left .portfolio-img .item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px;
  border-radius: 0px 0px 24px 24px;
  background: rgba(255, 255, 255, 0.88);
}
@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content {
    padding: 10px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content {
    padding: 13px 15px;
  }
}
@media only screen and (max-width: 1023px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content {
    border-radius: 0px 0px 16px 16px;
  }
}
@media only screen and (max-width: 767px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content {
    padding: 10px 12px;
  }
}
@media only screen and (max-width: 575px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content {
    padding: 10px 15px;
  }
}
.popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn,
.popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn:hover,
.popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn:focus {
  box-shadow: none;
  outline: none;
}
.popup-case-study .our-work .our-work-left .portfolio-img .item-content .item-text {
  flex: 0 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1365px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content .item-text {
    font-size: 22px;
    line-height: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content .item-text {
    font-size: 18px;
    line-height: 1.5rem;
  }
}

.popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  border-radius: 100%;
  flex: 0 0 auto;
}

@media only screen and (max-width: 1365px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn {
    width: 35px;
    height: 35px;
  }
}
.popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn img {
  object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn img {
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 575px) {
  .popup-case-study .our-work .our-work-left .portfolio-img .item-content .casestudy-model-btn img {
    max-width: 80%;
  }
}
.mi-casestudy-modal.mi-modal .modal-dialog {
  max-width: 1080px;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .mi-casestudy-modal.mi-modal .modal-dialog {
    max-width: 800px;
  }
}

@media only screen and (max-width: 991px) {
  .mi-casestudy-modal.mi-modal .modal-dialog {
    max-width: 680px;
  }
}

.mi-casestudy-modal.mi-modal .modal-dialog .mi-modal-header {
  position: absolute;
  top: 10px;
  right: 10px;
}

.mi-casestudy-modal.mi-modal .modal-dialog .mi-modal-header .mi-btn-close {
  color: var(--clr-white);
}

.mi-casestudy-modal.mi-modal .modal-dialog .mi-modal-header .mi-btn-close i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .mi-casestudy-modal.mi-modal .modal-dialog .mi-modal-header .mi-btn-close i {
    transition: none;
  }
}

.mi-casestudy-modal.mi-modal .modal-dialog .mi-modal-header .mi-btn-close .icon:before {
  background-color: var(--clr-white);
}
.mi-casestudy-modal.mi-modal .modal-dialog .mi-modal-header .mi-btn-close:hover .icon {
  transform: rotate(90deg);
}

.mi-casestudy-modal.mi-modal .modal-dialog .modal-body {
  line-height: 0;
}

@media only screen and (max-width: 1199px) {
  .mi-casestudy-modal.mi-modal .modal-dialog .modal-body iframe {
    height: 450px;
  }
}

@media only screen and (max-width: 575px) {
  .mi-casestudy-modal.mi-modal .modal-dialog .modal-body iframe {
    height: 400px;
  }
}

@media only screen and (max-width: 480px) {
  .mi-casestudy-modal.mi-modal .modal-dialog .modal-body iframe {
    height: 350px;
  }
}

@media only screen and (max-width: 375px) {
  .mi-casestudy-modal.mi-modal .modal-dialog .modal-body iframe {
    height: 300px;
  }
}

/*popup case study section css ends here*/

/*hire game team section css starts here*/

.hire-game-teams .explore-specialise-teams .tab-content .card-outer .card-main .card-content .serviceteam-list li {
  background-color: var(--clr-white);
}

/*hire game team section css ends here*/

.blackbg-div-content .why-new-hire-dedicated .content-wrap {
  color: var(--clr-white);
}
.blackbg-div-content .why-new-hire-dedicated .content-wrap h2 {
  color: var(--clr-white);
}
.blackbg-div-content .why-new-hire-dedicated .block-wrapper .item {
  border: 1px solid var(--clr-dark-black);
  background-color: var(--clr-light-grey) !important;
}
.blackbg-div-content .why-new-hire-dedicated .block-wrapper .item span {
  color: var(--clr-white);
}
.blackbg-div-content .why-new-hire-dedicated .block-wrapper .item p {
  color: var(--clr-white);
}

.blackbg-div-content .why-new-hire-dedicated .block-wrapper .item .item-icon .icon:before {
  background-color: var(--clr-white);
}

.all-portfolio-order .portfolio-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}
.all-portfolio-order .section-pf-listing {
  padding: 90px 0;
}
@media screen and (max-width: 1599px) {
  .all-portfolio-order .section-pf-listing {
    padding: 70px 0;
  }
}
@media screen and (max-width: 1199px) {
  .all-portfolio-order .section-pf-listing {
    padding: 55px 0;
  }
}
@media screen and (max-width: 991px) {
  .all-portfolio-order .section-pf-listing {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .all-portfolio-order .section-pf-listing {
    padding: 45px 0;
  }
}
@media screen and (max-width: 575px) {
  .all-portfolio-order .section-pf-listing {
    padding: 35px 0;
  }
}
.all-portfolio-order .section-pf-listing .dropdown {
  position: relative;
  width: 250px;
}
.all-portfolio-order .section-pf-listing .dropdown-btn {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  background: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all-portfolio-order .section-pf-listing .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
}
.all-portfolio-order .section-pf-listing .dropdown-content div,
.all-portfolio-order .section-pf-listing .checkbox-item {
  padding: 10px;
  cursor: pointer;
}
.all-portfolio-order .section-pf-listing .dropdown-content div:hover,
.all-portfolio-order .section-pf-listing .checkbox-item:hover {
  background: #f0f0f0;
}
.all-portfolio-order .section-pf-listing .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 1699px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner {
    gap: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner {
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner {
    gap: 20px;
  }
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image {
  width: calc(66.66% - 20px);
  background-color: var(--clr-white);
  border-radius: 40px;
  cursor:
    url("../img/cursor-img.svg") 15 15,
    auto;
  position: relative;
}
@media only screen and (max-width: 1699px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image {
    border-radius: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image {
    border-radius: 30px;
    width: calc(66.66% - 15px);
  }
}
@media only screen and (max-width: 1199px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image {
    width: calc(50% - 15px);
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image {
    width: 100%;
    border-radius: 16px;
  }
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  background-image: url("./img/cursor-img.svg");
  height: 60px;
  width: 60px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image::after {
    height: 48px;
    width: 48px;
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
  }
}
@media only screen and (max-width: 767px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image::after {
    height: 40px;
    width: 40px;
    top: 15px;
    right: 15px;
  }
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image:hover::after {
  opacity: 0;
}

.all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image:hover,
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image:focus {
  outline: none;
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image img {
  border-radius: 40px 40px 0 0;
  height: 400px;
  object-fit: cover;
}
@media only screen and (max-width: 1699px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image img {
    border-radius: 35px 35px 0 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image img {
    border-radius: 30px 30px 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image img {
    border-radius: 20px 20px 0 0;
    height: 220px;
  }
}
@media only screen and (max-width: 767px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-image img {
    border-radius: 16px 16px 0 0;
    height: 135px;
  }
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .cta,
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-no-image {
  width: calc(33.33% - 20px);
  padding: 40px;
  background-color: var(--clr-white);
  border-radius: 40px;
}
@media only screen and (max-width: 1699px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-no-image {
    border-radius: 35px;
    padding: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-no-image {
    padding: 31px 30px 30px;
    border-radius: 30px;
    width: calc(33.33% - 15px);
  }
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .cta {
  padding: 0;
}
@media only screen and (max-width: 1199px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .cta {
    width: 100%;
  }
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-no-image .label-title {
  border: 1px solid #ea1f52;
  color: #ea1f52;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 8px 0px 8px;
  margin-bottom: 20px;
  width: max-content;
  height: 26px;
  line-height: 0;
  font-weight: 400;
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .cta-inner {
  background: url("../img/portfolio-listing/webp/cta-bg.webp") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 40px;
  overflow: hidden;
}
@media only screen and (max-width: 1699px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .cta-inner {
    border-radius: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .cta-inner {
    border-radius: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .cta-inner {
    border-radius: 20px;
    background: #005cfe;
  }
}
@media only screen and (max-width: 767px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .cta-inner {
    border-radius: 16px;
    gap: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-no-image .label-title {
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .portfolio-card.has-no-image .label-title {
    margin-bottom: 12px;
    padding: 3px 10px 2px 10px;
    font-size: 12px;
    line-height: 1.3rem;
  }
}
.all-portfolio-order
  .section-pf-listing
  .section-pf-listing-inner
  .portfolio-card.has-no-image
  .section-pf-listing-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.all-portfolio-order
  .section-pf-listing
  .section-pf-listing-inner
  .portfolio-card.has-no-image
  .section-pf-listing-card-content
  .para-text {
  margin-top: 21px;
}
.all-portfolio-order
  .section-pf-listing
  .section-pf-listing-inner
  .portfolio-card.has-image
  .section-pf-listing-card-grid {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 1699px) {
  .all-portfolio-order
    .section-pf-listing
    .section-pf-listing-inner
    .portfolio-card.has-image
    .section-pf-listing-card-grid {
    padding: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order
    .section-pf-listing
    .section-pf-listing-inner
    .portfolio-card.has-image
    .section-pf-listing-card-grid {
    padding: 30px;
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .all-portfolio-order
    .section-pf-listing
    .section-pf-listing-inner
    .portfolio-card.has-image
    .section-pf-listing-card-grid {
    gap: 10px;
    padding: 20px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order
    .section-pf-listing
    .section-pf-listing-inner
    .portfolio-card.has-image
    .section-pf-listing-card-grid
    .font-30 {
    font-size: 25px;
    line-height: 2.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .all-portfolio-order
    .section-pf-listing
    .section-pf-listing-inner
    .portfolio-card.has-image
    .section-pf-listing-card-grid
    .font-30 {
    font-size: 20px;
    line-height: 1.6rem;
  }
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .section-pf-listing-card-img {
  position: relative;
}
.all-portfolio-order .section-pf-listing .section-pf-listing-inner .new-label-title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 8px 0px 8px;
  height: 26px;
  width: max-content;
  z-index: 2;
  line-height: 0;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .new-label-title {
    left: 30px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .new-label-title {
    left: 25px;
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .all-portfolio-order .section-pf-listing .section-pf-listing-inner .new-label-title {
    left: 15px;
    bottom: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .all-portfolio-order
    .section-pf-listing
    .section-pf-listing-inner
    .portfolio-card.has-no-image
    .section-pf-listing-card-content
    .common-c-view {
    font-size: 25px;
    line-height: 2.3rem;
  }
}

/* --------start--two--section--------- */

.sec-cloud-engineers-bg {
  width: 100%;
  background: #ffffff;
}
.sec-cloud-engineers-bg .cloud-engineers-box {
  max-width: 440px;
}
@media only screen and (max-width: 1199px) {
  .sec-cloud-engineers-bg .cloud-engineers-box {
    max-width: 100%;
  }
}
.sec-cloud-engineers-bg .cloud-engineers-box .get-engineers {
  padding-bottom: 10px;
}

.sec-cloud-engineers-bg .cloud-engineers-box .from-giving {
  margin-bottom: 16px;
}

.sec-cloud-engineers-bg .cloud-engineers-box-discovery {
  max-width: 600px;
}
@media only screen and (max-width: 1199px) {
  .sec-cloud-engineers-bg .cloud-engineers-box-discovery {
    max-width: 100%;
  }
}
.sec-cloud-engineers-bg .cloud-engineers-box-discovery .get-engineers {
  padding-bottom: 10px;
}

.sec-cloud-engineers-bg .cloud-engineers-box-discovery .from-giving {
  margin-bottom: 16px;
}

.sec-cloud-engineers-bg .engineers-grid-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media only screen and (max-width: 1199px) {
  .sec-cloud-engineers-bg .engineers-grid-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
  }
}
.sec-cloud-engineers-bg .engineers-grid-box-discovery {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
/* @media only screen and (max-width: 1199px) {
  .sec-cloud-engineers-bg .engineers-grid-box-discovery {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0px;
  }
} */

.sec-cloud-engineers-bg .engineers-left-part {
  width: 100%;
}
.sec-cloud-engineers-bg .engineers-left-part .lean-canvas-main {
  width: 100%;
}
.sec-cloud-engineers-bg .engineers-left-part .lean-canvas-main ul {
  margin: 0;
  padding: 0;
}
.sec-cloud-engineers-bg .engineers-left-part .lean-canvas-main ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  background-image: url("../img/rectangle.svg");
  background-repeat: no-repeat;
  background-position: left 10px;
  padding-left: 20px;
  margin: 7px 0;
}

.sec-cloud-engineers-bg .engineers-left-part .architect-text {
  font-size: 20px;
  color: #111111;
}

.accordion-architect {
  width: 100%;
  background: transparent;
  box-shadow: none !important;
}
.sec-cloud-engineers-bg .accordion-button {
  border-radius: 16px 16px 0px 0px !important;
}
@media only screen and (max-width: 575px) {
  .sec-cloud-engineers-bg .accordion-button {
    border-radius: 0px !important;
    padding: 10px 0 10px 0;
  }
}

.sec-cloud-engineers-bg .accordion-button::after {
  background-image: url("../img/cloud-services/svg/add.svg");
}
.sec-cloud-engineers-bg .accordion-button:not(.collapsed)::after {
  background-image: url("../img/cloud-services/svg/close.svg");
}
.sec-cloud-engineers-bg .accordion-button:not(.collapsed) {
  color: #111111;
  background: #f7f7f7;
}
@media only screen and (max-width: 575px) {
  .sec-cloud-engineers-bg .accordion-button:not(.collapsed) {
    background: transparent;
    padding: 10px 0;
    border-top: solid 1px #dddddd;
    border-radius: 0px !important;
  }
}
.sec-cloud-engineers-bg .accordion-space {
  background: #f7f7f7;
  border-radius: 0px 0px 16px 16px;
}
@media only screen and (max-width: 575px) {
  .sec-cloud-engineers-bg .accordion-space {
    background: transparent;
    border-radius: 0px !important;
    border-bottom: solid 1px #dddddd;
    padding: 10px 0px;
  }
}
.engineers-right-part {
  width: 100%;
}
.sec-cloud-engineers-bg .accordion-item {
  border-radius: 16px;
  border: none !important;
}
.sec-cloud-engineers-bg .accordion-header {
  border-radius: 16px;
  border: none !important;
}

/* --------end--two--section--------- */

.cloud-providers-section .cloud-logo-wrapper .bg-pink {
  background-color: #ffc1d9;
}
.cloud-providers-section .cloud-logo-wrapper .bg-purple {
  background-color: #d0bfff;
}
.cloud-providers-section .cloud-logo-wrapper .bg-green {
  background-color: #b6f1cc;
}
.cloud-providers-section .cloud-logo-wrapper .bg-brown {
  background-color: #ffd8c0;
}
.cloud-providers-section .cloud-logo-wrapper .bg-sky {
  background-color: #9fe9f6;
}

.cloud-providers-section .cloud-logo-wrapper {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  list-style: none;
}

@media only screen and (max-width: 575px) {
  .cloud-providers-section .cloud-logo-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    overflow: hidden;
    overflow-x: scroll;
    white-space: nowrap;
  }
}

.cloud-providers-section .cloud-logo-wrapper .item {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 575px) {
  .cloud-providers-section .cloud-logo-wrapper .item {
    width: 100%;
    min-width: 60%;
    margin: 0 0 5px;
  }
}
@media only screen and (max-width: 375px) {
  .cloud-providers-section .cloud-logo-wrapper .item {
    min-width: 80%;
  }
}

.cloud-providers-section .cloud-logo-wrapper .common-pad {
  padding: 50px 20px;
}

@media only screen and (max-width: 1499px) {
  .cloud-providers-section .cloud-logo-wrapper .common-pad {
    padding: 35px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .cloud-providers-section .cloud-logo-wrapper .common-pad {
    padding: 25px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .cloud-providers-section .cloud-logo-wrapper .common-pad {
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 575px) {
  .cloud-providers-section .cloud-logo-wrapper .common-pad {
    padding: 16px 15px;
  }
}
@media only screen and (max-width: 1499px) {
  .cloud-providers-section .cloud-logo-wrapper .common-pad img {
    max-width: 80%;
  }
}
@media only screen and (max-width: 1199px) {
  .cloud-providers-section .cloud-logo-wrapper .common-pad img {
    max-width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .cloud-providers-section .cloud-logo-wrapper .mobile-v {
    max-width: 50% !important;
  }
}

.cloud-providers-section .cloud-logo-wrapper .item.item-double {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 0;
  background-color: transparent;
}
@media only screen and (max-width: 575px) {
  .cloud-providers-section .cloud-logo-wrapper .item.item-double {
    display: none;
  }
}
.cloud-providers-section .cloud-logo-wrapper .item.item-double .sub-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------start-css-software-product-discovery-services------- */
.sec-discovery-services-main {
  width: 100%;
}
.sec-discovery-services-main .item-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
}
@media only screen and (max-width: 991px) {
  .sec-discovery-services-main .item-list {
    display: flex;
    grid-gap: 15px;
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 10px;
    overflow-x: scroll;
  }
}
.sec-discovery-services-main .item-list .item {
  background: #f0f0f0;
  padding: 25px;
  border-radius: 24px;
}
@media only screen and (max-width: 991px) {
  .sec-discovery-services-main .item-list .item {
    border-radius: 16px;
    white-space: normal;
    width: 100%;
    min-width: 85%;
    padding: 20px 15px;
  }
}
.sec-discovery-services-main .item-list .item.item-double {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0;
  background-color: transparent;
}
@media only screen and (max-width: 991px) {
  .sec-discovery-services-main .item-list .item.item-double {
    display: flex;
    grid-gap: 15px;
    white-space: nowrap;
    overflow: auto;
    overflow-x: scroll;
  }
}
.sec-discovery-services-main .item-list .item.item-double .sub-item {
  background: #f0f0f0;
  padding: 25px;
  border-radius: 24px;
}
@media only screen and (max-width: 991px) {
  .sec-discovery-services-main .item-list .item.item-double .sub-item {
    border-radius: 16px;
    white-space: normal;
    width: 100%;
    min-width: 100%;
    padding: 20px 15px;
  }
}

.sec-discovery-services-main.sec-discovery-services-main--secondary .item-list .item {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
}

.sec-discovery-services-main.sec-discovery-services-main--secondary .item-list .item.item-double {
  background-color: transparent;
  border: none;
}

.sec-discovery-services-main.sec-discovery-services-main--secondary .item-list .item.item-double .sub-item {
  background-color: #f7f7f7;
  border: 1px solid #e6e6e6;
}
/* ------end-css-software-product-discovery-services------- */

/* --------start--sec-crm-bg--section-css-------- */
.sec-crm-bg {
  width: 100%;
  background: #efefef;
}
.sec-crm-bg .crm-box-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 630px 1fr;
  grid-gap: 60px;
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
  .sec-crm-bg .crm-box-grid {
    grid-gap: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .sec-crm-bg .crm-box-grid {
    grid-gap: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .sec-crm-bg .crm-box-grid {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .sec-crm-bg .crm-box-grid {
    grid-template-columns: 1fr;
    grid-gap: 1px;
  }
}
.sec-crm-bg .crm-box-left-main {
  max-width: 620px;
  position: sticky;
  top: 105px;
}
@media only screen and (max-width: 991px) {
  .sec-crm-bg .crm-box-left-main {
    max-width: 100%;
    margin: 0 0 15px;
  }
}

.sec-crm-bg .crm-box-left-main .crm-software-title {
  margin-top: 15px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .sec-crm-bg .crm-box-left-main .crm-software-title {
    margin-top: 0px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-crm-bg .crm-box-left-main .crm-software-title {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
.sec-crm-bg .crm-box-left-main .crm-box-left-img {
  width: 100%;
}

.sec-crm-bg .crm-box-right-menu {
  background: #ffffff;
  padding: 20px;
  border-radius: 24px;
  margin-top: 15px;
  position: sticky;
  top: 105px;
  margin-left: -40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .sec-crm-bg .crm-box-right-menu {
    padding: 16px;
    border-radius: 16px;
    margin-top: 10px;
    margin-left: 0px;
  }
}
@media only screen and (max-width: 1199px) {
  .sec-crm-bg .crm-box-right-menu {
    border-radius: 20px;
    padding: 15px;
    margin-left: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-crm-bg .crm-box-right-menu {
    border-radius: 20px;
    padding: 15px;
    margin-left: 0px;
    position: static;
  }
}

@media only screen and (max-width: 767px) {
  .sec-crm-bg .crm-box-right-menu {
    border-radius: 16px;
    padding: 15px;
    position: static;
  }
}
.sec-crm-bg .crm-box-right-menu ul {
  margin: 0;
  padding: 0;
}
.sec-crm-bg .crm-box-right-menu ul li {
  width: 100%;
  text-decoration: none;
  list-style: none;
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  line-height: 1.7rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .sec-crm-bg .crm-box-right-menu ul li {
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .sec-crm-bg .crm-box-right-menu ul li {
    font-size: 16px;
    line-height: 1.5rem;
  }
}
.sec-crm-bg .crm-box-right-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.2073 14.711L7.27284 11.7765C7.09796 11.6016 6.87812 11.5122 6.61334 11.5081C6.34856 11.5041 6.12468 11.5935 5.94169 11.7765C5.7587 11.9595 5.6672 12.1814 5.6672 12.4421C5.6672 12.7028 5.7587 12.9247 5.94169 13.1077L9.40809 16.5741C9.63642 16.8024 9.90283 16.9166 10.2073 16.9166C10.5117 16.9166 10.7781 16.8024 11.0065 16.5741L18.034 9.54653C18.2089 9.37165 18.2984 9.15181 18.3024 8.88703C18.3065 8.62225 18.217 8.39837 18.034 8.21538C17.851 8.03239 17.6292 7.94089 17.3684 7.94089C17.1077 7.94089 16.8859 8.03239 16.7029 8.21538L10.2073 14.711ZM12.0021 24C10.3424 24 8.78236 23.6851 7.32198 23.0552C5.86157 22.4253 4.59123 21.5704 3.51096 20.4906C2.43066 19.4108 1.57543 18.141 0.945255 16.6813C0.315085 15.2215 0 13.6618 0 12.0021C0 10.3424 0.314948 8.78236 0.944845 7.32198C1.57474 5.86157 2.42959 4.59123 3.50938 3.51096C4.58919 2.43066 5.85897 1.57543 7.31872 0.945256C8.77845 0.315086 10.3382 0 11.9979 0C13.6576 0 15.2176 0.31495 16.678 0.944846C18.1384 1.57474 19.4088 2.42959 20.489 3.50938C21.5693 4.58919 22.4246 5.85897 23.0547 7.31873C23.6849 8.77846 24 10.3382 24 11.9979C24 13.6576 23.6851 15.2176 23.0552 16.678C22.4253 18.1384 21.5704 19.4088 20.4906 20.489C19.4108 21.5693 18.141 22.4246 16.6813 23.0547C15.2215 23.6849 13.6618 24 12.0021 24ZM12 22.1053C14.8211 22.1053 17.2105 21.1263 19.1684 19.1684C21.1263 17.2105 22.1053 14.8211 22.1053 12C22.1053 9.17894 21.1263 6.78946 19.1684 4.83156C17.2105 2.87366 14.8211 1.89471 12 1.89471C9.17894 1.89471 6.78946 2.87366 4.83156 4.83156C2.87366 6.78946 1.89471 9.17894 1.89471 12C1.89471 14.8211 2.87366 17.2105 4.83156 19.1684C6.78946 21.1263 9.17894 22.1053 12 22.1053Z' fill='%23192020'/%3E%3C/svg%3E");
}
@media only screen and (max-width: 1439px) {
  .sec-crm-bg .crm-box-right-menu ul li::after {
    width: 18px;
    height: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .crm-dev-leverage .block-wrapper {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
  }
}
@media only screen and (max-width: 991px) {
  .crm-dev-leverage .block-wrapper .item {
    margin: 0 0 8px;
    white-space: normal;
    height: auto;
    min-height: 100%;
    width: 100%;
    min-width: 46%;
  }
}
@media only screen and (max-width: 575px) {
  .crm-dev-leverage .block-wrapper .item {
    min-width: 80%;
  }
}

@media only screen and (max-width: 480px) {
  .crm-dev-leverage .block-wrapper .item {
    min-width: 85%;
  }
}

/* --------end--sec-crm-bg--section-css-------- */

/*tech partners page css starts here*/

.partneship-section .integrate-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
@media screen and (max-width: 1599px) {
  .partneship-section .integrate-wrapper {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 991px) {
  .partneship-section .integrate-wrapper {
    grid-template-columns: 1fr;
  }
}

.partneship-section .integrate-wrapper .item {
  padding: 30px;
}
@media screen and (max-width: 1599px) {
  .partneship-section .integrate-wrapper .item {
    padding: 20px;
  }
}

@media screen and (max-width: 575px) {
  .partneship-section .integrate-wrapper .item {
    padding: 20px 15px;
  }
}

.partneship-section .integrate-wrapper .item:nth-child(3) {
  grid-column: span 2;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .partneship-section .integrate-wrapper .item:nth-child(3) {
    grid-column: span 1;
  }
}
.tech-logo-lists {
  gap: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 1365px) {
  .tech-logo-lists {
    gap: 12px;
  }
}
.tech-logo-lists li {
  padding: 18px 14px;
  border: 1px solid var(--clr-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
@media screen and (max-width: 1365px) {
  .tech-logo-lists li {
    padding: 15px 12px;
  }
}
@media screen and (max-width: 991px) {
  .tech-logo-lists li {
    padding: 12px 10px;
  }
}
@media screen and (max-width: 1365px) {
  .tech-logo-lists li img {
    max-width: 150px;
  }
}
@media screen and (max-width: 1199px) {
  .tech-logo-lists li img {
    max-width: 120px;
  }
}
.partner-certi-sec .item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 1599px) {
  .partner-certi-sec .item-wrapper {
    grid-gap: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .partner-certi-sec .item-wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 991px) {
  .partner-certi-sec .item-wrapper {
    grid-template-columns: 1fr;
  }
}
.partner-certi-sec .item-wrapper .item {
  padding: 30px;
}
@media screen and (max-width: 1599px) {
  .partner-certi-sec .item-wrapper .item {
    padding: 20px;
  }
}

@media screen and (max-width: 575px) {
  .partner-certi-sec .item-wrapper .item {
    padding: 15px;
  }
}

.partner-certi-sec .item-wrapper .item .icon-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 991px) {
  .partner-certi-sec .item-wrapper .item .icon-wrap {
    gap: 10px;
  }
}

.partner-certi-sec .item-wrapper .item .icon-wrap .icon-list {
  width: 56px;
  height: 56px;
  border-radius: 99em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
@media only screen and (max-width: 991px) {
  .partner-certi-sec .item-wrapper .item .icon-wrap .icon-list {
    width: 48px;
    height: 48px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .partner-certi-sec .item-wrapper .item .block-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.partner-certi-sec .item-wrapper .item .block-wrapper .blocks:first-child {
  border-bottom: 1px solid var(--clr-off-white);
  padding-bottom: 20px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .partner-certi-sec .item-wrapper .item .block-wrapper .blocks:first-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.partner-certi-sec .item-wrapper .certi-lists ul {
  gap: 20px;
}
@media only screen and (max-width: 1365px) {
  .partner-certi-sec .item-wrapper .certi-lists ul {
    gap: 12px;
  }
}

.partner-certi-sec .item-wrapper .certi-lists ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 14px;
  border-radius: 12px;
  background-color: var(--clr-white);
}
@media screen and (max-width: 1365px) {
  .partner-certi-sec .item-wrapper .certi-lists ul li {
    padding: 15px 12px;
  }
}
@media screen and (max-width: 991px) {
  .partner-certi-sec .item-wrapper .certi-lists ul li {
    padding: 12px 10px;
    gap: 8px;
  }
}
@media screen and (max-width: 991px) {
  .partner-certi-sec .item-wrapper .certi-lists.securities ul li img {
    width: 35px;
    height: 35px;
  }
}
.partner-certi-sec .item-wrapper .certi-lists ul li .short-wrap p {
  opacity: 0.6;
}

.partner-certi-sec.bg-off-white .item-wrapper .certi-lists ul li {
  border: 1px solid var(--clr-off-white);
}

.projects-delivered.succes-partners .projects-delivered__item {
  background-color: var(--clr-light-grey);
}
.projects-delivered.succes-partners .projects-delivered__item .projects-delivered__item-icon {
  border: none;
}
.projects-delivered.succes-partners .projects-delivered__item .projects-delivered__item-icon .icon:before {
  background-color: var(--clr-white);
}

.projects-delivered.succes-partners .item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

@media only screen and (max-width: 1599px) {
  .projects-delivered.succes-partners .item-wrapper {
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .projects-delivered.succes-partners .item-wrapper {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    height: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .projects-delivered.succes-partners .item-wrapper .projects-delivered__item {
    margin: 0 0 8px;
    white-space: normal;
    height: auto;
    min-height: 100%;
    width: 100%;
    min-width: 46%;
  }
}

@media only screen and (max-width: 767px) {
  .projects-delivered.succes-partners .item-wrapper .projects-delivered__item {
    min-width: 70%;
  }
}
@media only screen and (max-width: 575px) {
  .projects-delivered.succes-partners .item-wrapper .projects-delivered__item {
    min-width: 80%;
  }
}

@media only screen and (max-width: 480px) {
  .projects-delivered.succes-partners .item-wrapper .projects-delivered__item {
    min-width: 85%;
  }
}

.projects-delivered.succes-partners .item-wrapper .projects-delivered__item .projects-delivered__item-title .icon {
  flex: 0 0 auto;
}

.tech-partner-hero-section {
  background: #f6fafd url("../img/partnerships/webp/big/partnership-bg.webp") no-repeat;
  background-size: cover !important;
  background-position: right 0% bottom -40px;
  position: relative;
  height: calc(100vh - 80px);
}
@media screen and (min-width: 1200px) and (max-width: 1599px) {
  .tech-partner-hero-section {
    padding: 35px 0;
  }
}
@media screen and (max-width: 1199px) {
  .tech-partner-hero-section {
    background: #f6fafe;
    height: auto;
  }
}

.tech-partner-hero-section .services-hero-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
@media screen and (max-width: 1599px) {
  .tech-partner-hero-section .services-hero-section {
    max-width: none;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .tech-partner-hero-section .services-hero-section {
    padding: 70px 0 50px;
  }
}
@media screen and (max-width: 991px) {
  .tech-partner-hero-section .services-hero-section {
    padding: 40px 0 35px;
  }
}
.tech-partner-hero-section .services-hero-section .inner-div {
  z-index: 3;
}
@media screen and (max-width: 1499px) {
  .tech-partner-hero-section .services-hero-section .font-80 {
    font-size: 38px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  .tech-partner-hero-section .services-hero-section .font-80 {
    font-size: 32px;
    line-height: 1.2;
  }
}
.tech-partner-hero-section .services-hero-section p {
  margin: 30px 0 35px;
}
@media screen and (max-width: 1499px) {
  .tech-partner-hero-section .services-hero-section p {
    margin: 22px 0 24px;
  }
}
@media screen and (max-width: 1199px) {
  .tech-partner-hero-section .services-hero-section p {
    margin: 25px 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .tech-partner-hero-section .services-hero-section p {
    margin: 10px 0 25px;
  }
}
.tech-client-testimonial .section-services-new-client-testimonial::after {
  display: none;
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .partner-difference .why-new-hire-dedicated .block-wrapper .item:nth-child(3) {
    grid-column: span 2;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  .partner-difference .why-new-hire-dedicated .block-wrapper .item span {
    line-height: 2rem;
  }
}

/* --------start-css---erp-sec-erp-bg--------- */
.sec-erp-bg {
  width: 100%;
  background: #ededed;
}
.sec-erp-bg .erp-box-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 630px 1fr;
  grid-gap: 60px;
}
@media only screen and (min-width: 1440px) and (max-width: 1599px) {
  .sec-erp-bg .erp-box-grid {
    grid-gap: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .sec-erp-bg .erp-box-grid {
    grid-gap: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .sec-erp-bg .erp-box-grid {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .sec-erp-bg .erp-box-grid {
    grid-template-columns: 1fr;
    grid-gap: 1px;
  }
}
.sec-erp-bg .erp-box-left-main {
  max-width: 620px;
  position: sticky;
  top: 105px;
}
@media only screen and (max-width: 991px) {
  .sec-erp-bg .erp-box-left-main {
    max-width: 100%;
    margin: 0 0 15px;
    text-align: center;
  }
}
.sec-erp-bg .erp-box-left-main .erp-software-title {
  margin-top: 15px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .sec-erp-bg .erp-box-left-main .erp-software-title {
    margin-top: 0px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-erp-bg .erp-box-left-main .erp-software-title {
    margin-top: 0px;
    margin-bottom: 8px;
  }
}
.sec-erp-bg .erp-box-left-main .erp-box-left-img {
  width: 100%;
}
.sec-erp-bg .erp-deve-box-bg {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 24px;
  margin-top: 15px;
  position: sticky;
  top: 105px;
  margin-left: -40px;
}
@media only screen and (min-width: 1440px) and (max-width: 1499px) {
  .sec-erp-bg .erp-deve-box-bg {
    margin-left: -15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1439px) {
  .sec-erp-bg .erp-deve-box-bg {
    margin-left: 0px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-erp-bg .erp-deve-box-bg {
    position: static;
    margin-left: 0px;
    border-radius: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-erp-bg .erp-deve-box-bg {
    position: static;
    margin-left: 0px;
    padding: 16px 10px;
    border-radius: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .sec-erp-bg .erp-deve-box-bg {
    position: static;
    margin-left: 0px;
    padding: 16px 9px;
    border-radius: 16px;
  }
}
.sec-erp-bg .erp-deve-box-bg .erp-box-right-grid {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-gap: 18px;
}
@media only screen and (max-width: 1439px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-right-grid {
    grid-template-columns: 48px 1fr;
    grid-gap: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-right-grid {
    grid-template-columns: 42px 1fr;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-right-grid {
    grid-template-columns: 42px 1fr;
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-right-grid {
    grid-template-columns: 42px 1fr;
    grid-gap: 8px;
  }
}
.sec-erp-bg .erp-deve-box-bg .erp-box-left-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 100%;
  border: solid 1px #e5e5e5;
  text-align: center;
  margin-top: 3px;
  padding-top: 11px;
}
@media only screen and (max-width: 1439px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-left-icon {
    width: 48px;
    height: 48px;
    padding-top: 9px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-left-icon {
    width: 42px;
    height: 42px;
    padding-top: 7px;
  }
}
@media only screen and (max-width: 575px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-left-icon {
    width: 40px;
    height: 40px;
    padding-top: 6px;
  }
}
.sec-erp-bg .erp-deve-box-bg .erp-box-left-icon .erp-analysis {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 1439px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-left-icon .erp-analysis {
    width: 22px;
    height: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-left-icon .erp-analysis {
    width: 18px;
    height: 18px;
  }
}
@media only screen and (max-width: 375px) {
  .sec-erp-bg .erp-deve-box-bg .erp-box-left-icon .erp-analysis {
    width: 16px;
    height: 16px;
  }
}
.sec-erp-bg .erp-deve-box-bg .erp-box-right-main {
  padding-top: 5px;
}

/* --------end-css---erp-sec-erp-bg--------- */

/* --------start-css-cta-new-sec-book-with-us--------- */
.new-sec-book-with-us {
  background: #ededed;
}
@media only screen and (min-width: 1501px) {
  .new-sec-book-with-us .content-side {
    padding: 35px 35px 35px 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .new-sec-book-with-us .content-side {
    padding: 35px 35px 35px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .new-sec-book-with-us .content-side {
    padding: 20px 0px 25px 25px;
  }
}
@media only screen and (max-width: 991px) {
  .new-sec-book-with-us .content-side {
    padding: 0px;
    display: block;
    text-align: center;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 22px 15px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .new-sec-book-with-us .content-side {
    padding: 22px 15px 25px;
  }
}
@media only screen and (max-width: 575px) {
  .new-sec-book-with-us .content-side {
    padding: 22px 15px 25px;
  }
}
@media only screen and (max-width: 991px) {
  .new-sec-book-with-us .content-side .content-text-m {
    max-width: 100% !important;
  }
}
.new-sec-book-with-us .inner-content {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 9;
  background-color: var(--clr-black);
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .new-sec-book-with-us .inner-content {
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .new-sec-book-with-us .inner-content {
    gap: 0px;
  }
}
.new-sec-book-with-us .inner-content {
  position: relative;
  z-index: 9;
  padding-right: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .new-sec-book-with-us .inner-content {
    padding-right: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .new-sec-book-with-us .inner-content {
    padding-right: 0px;
  }
}
@media only screen and (max-width: 575px) {
  .new-sec-book-with-us .inner-content {
    padding-right: 0px;
  }
}
.new-sec-book-with-us .inner-content .book-wrapper {
  display: flex;
  align-items: end;
  flex: 0 0 auto;
  position: relative;
  z-index: 9;
}
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .new-sec-book-with-us .inner-content .book-wrapper {
    display: block;
    align-items: center;
    text-align: center;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .new-sec-book-with-us .inner-content .book-wrapper {
    display: block;
    align-items: center;
    text-align: center;
  }
}
.new-sec-book-with-us .inner-content .book-wrapper.bottomside {
  position: absolute;
  bottom: 0;
  right: 35px;
}
@media only screen and (max-width: 991px) {
  .new-sec-book-with-us .inner-content .book-wrapper.bottomside {
    position: relative;
    right: 0;
  }
}
.new-sec-book-with-us .inner-content .book-wrapper img.bottom {
  transform: translateY(44px);
}
@media only screen and (max-width: 1199px) {
  .new-sec-book-with-us .inner-content .book-wrapper.bottomside .img-wrap {
    text-align: right;
  }
}
@media only screen and (max-width: 991px) {
  .new-sec-book-with-us .inner-content .book-wrapper .img-wrap {
    display: none;
  }
}
.new-sec-book-with-us .inner-content .book-wrapper .img-wrap img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: auto 460/340;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .new-sec-book-with-us .inner-content .book-wrapper .img-wrap img {
    width: 100%;
    max-width: 417px;
  }
}
.new-sec-book-with-us .inner-content .book-wrapper .img-wrap.img-wrap--large img {
  width: 463px;
  aspect-ratio: auto 460/299;
}
@media only screen and (max-width: 1199px) {
  .new-sec-book-with-us .inner-content .book-wrapper.bottomside .img-wrap img {
    max-width: 70%;
  }
}
/* --------end-css-cta-new-sec-book-with-us--------- */

/*tech partners page css ends here*/

/*new portfoiio css strats here*/

.new-portfolio-outer .new-portfilio-heading {
  position: relative;
  z-index: 3;
}

.new-portfolio-outer .main-filter.mt-60 {
  margin-top: 60px;
}

@media screen and (max-width: 1599px) {
  .new-portfolio-outer .main-filter.mt-60 {
    margin-top: 48px;
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .new-portfolio-outer .main-filter.mt-60 {
    margin-top: 26px;
  }
}

@media screen and (max-width: 1199px) {
  .new-portfolio-outer .main-filter.mt-60 {
    margin-top: 38px;
  }
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .main-filter.mt-60 {
    margin-top: 28px;
  }
}

.new-portfolio-outer .tab-portfolios-main-inner {
  background-color: #eeeeee;
  padding: 12px;
  border-radius: 100rem;
  display: flex;
  gap: 12px;
}

@media screen and (max-width: 575px) {
  .new-portfolio-outer .tab-portfolios-main-inner {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    padding: 5px 5px 10px;
    justify-content: start !important;
    border-radius: 10px 10px 0 0;
  }
}

.new-portfolio-outer .tab-portfolios-main-inner .tab-portfolios-main-btn {
  padding: 12px 20px;
  background-color: var(--clr-white);
  border-radius: 100rem;
  min-width: 146px;
  transition: all 0.3s ease;
  color: #000000;
  border: none;
}
@media screen and (max-width: 575px) {
  .new-portfolio-outer .tab-portfolios-main-inner .tab-portfolios-main-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 10px 10px 0 0;
  }
}

.new-portfolio-outer .tab-portfolios-main-inner .tab-portfolios-main-btn.active {
  background-color: #e81646;
  color: #fff;
}

.new-portfolio-outer .portfolio-list-wrapper.mt-80 {
  margin-top: 80px;
}

@media screen and (max-width: 1599px) {
  .new-portfolio-outer .portfolio-list-wrapper.mt-80 {
    margin-top: 60px;
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .new-portfolio-outer .portfolio-list-wrapper.mt-80 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-list-wrapper.mt-80 {
    margin-top: 40px;
  }
}

@media screen and (max-width: 991px) {
  .new-portfolio-outer .portfolio-list-wrapper.mt-80 {
    margin-top: 32px;
  }
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-list-wrapper.mt-80 {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-list-wrapper {
    padding-top: 24px;
  }
}

.new-portfolio-outer .portfolio-outer {
  position: relative;
}

.new-portfolio-outer .portfolio-slide-main {
  position: relative;
}

@media screen and (min-width: 1500px) and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-slide-main .PortfolioListSlider {
    border-radius: 35px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .portfolio-slide-main .PortfolioListSlider {
    border-radius: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-slide-main .PortfolioListSlider {
    border-radius: 20px;
  }
}

@media screen and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .PortfolioListSlider {
    border-radius: 16px;
  }
}

.new-portfolio-outer .portfolio-slide-main .PortfolioListSlider .owl-stage-outer .owl-stage {
  display: flex;
}

.new-portfolio-outer .portfolio-slide-main .owl-stage {
  display: flex;
}

.new-portfolio-outer .portfolio-slide-main .item {
  height: 100%;
}

.new-portfolio-outer .portfolio-slide-main .our-work {
  display: flex;
  width: 100%;
  background-color: var(--clr-white);
  border-radius: 40px;
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work {
    display: block;
  }
}

.new-portfolio-outer .portfolio-slide-main .item .our-work {
  min-height: 100%;
  overflow: hidden;
  border-radius: 40px;
}

@media screen and (min-width: 1500px) and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-slide-main .item .our-work {
    border-radius: 35px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .portfolio-slide-main .item .our-work {
    border-radius: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-slide-main .item .our-work {
    border-radius: 20px;
  }
}

@media screen and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .item .our-work {
    border-radius: 16px;
  }
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .item .our-work {
    display: flex;
    flex-direction: column;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .our-work-left {
  width: 50%;
}

.new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img {
  border-radius: 40px 0 0 40px;
  height: 100%;
}

@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    border-radius: 35px 0 0 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    border-radius: 30px 0 0 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    border-radius: 20px 0 0 20px;
  }
}

@media only screen and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    border-radius: 16px 0 0 16px;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    height: 250px;
    border-radius: 16px 16px 0 0;
  }
}

@media only screen and (max-width: 575px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    height: 220px;
  }
}

@media only screen and (max-width: 375px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img {
    height: 135px;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img picture {
  display: block;
  height: 100%;
}

.new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img.object-top img {
  object-position: top;
}

.new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
  aspect-ratio: auto 840/598;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 0 0 40px;
}

@media only screen and (min-width: 1500px) and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 35px 0 0 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 30px 0 0 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 20px 0 0 20px;
  }
}

@media only screen and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 16px 0 0 16px;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left .portfolio-img img {
    border-radius: 16px 16px 0 0;
    object-position: top;
  }
}

@media screen and (max-width: 1599px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left {
    width: 45%;
  }
}

@media screen and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-left {
    width: 100%;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  border: 1px solid #eaecf4;
  border-left: none;
  padding: 40px;
  border-radius: 0 40px 40px 0;
}

@media screen and (min-width: 1500px) and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    padding: 35px;
    border-radius: 0 35px 35px 0;
  }
}

@media screen and (max-width: 1599px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    width: 55%;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    padding: 30px;
    border-radius: 0 30px 30px 0;
  }
}

@media screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    gap: 20px;
    border-radius: 0 20px 20px 0;
    padding: 25px;
  }
}

@media screen and (max-width: 1023px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    width: 60%;
  }
}

@media screen and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    border-radius: 0 16px 16px 0;
    padding: 25px 22px;
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    padding: 20px 16px 28px 16px;
    gap: 15px;
    width: 100%;
    border: none;
    flex: auto;
    border-radius: 0;
  }
}

@media screen and (min-width: 481px) and (max-width: 575px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    padding: 20px 16px 28px 16px;
  }
}

@media screen and (max-width: 480px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right {
    padding: 15px 15px 20px 15px;
    gap: 10px;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .label-title {
  padding: 0px 8px 0px 8px;
  display: inline-block;
  border-radius: 4px;
  margin: 0 6px 8px 0;
  border: 1px solid #3b5068;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .label-title {
    display: none;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .portfolio-title {
  padding-right: 50px;
}

@media screen and (max-width: 1499px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .portfolio-title {
    font-size: 28px;
    line-height: 2.4rem;
    padding-right: 0;
  }
}

@media screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .portfolio-title {
    font-size: 24px;
    line-height: 2.2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .portfolio-title {
    font-size: 18px;
    line-height: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .portfolio-title {
    font-size: 20px;
    line-height: 1.6rem;
  }
}

@media screen and (max-width: 1365px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .topside p {
    display: none;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .clr-red {
  color: #ed184f;
}

.new-portfolio-outer .portfolio-slide-main .our-work .app-features {
  margin-top: 15px;
}

@media screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .app-features {
    margin-top: 0;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .app-features ul li {
  margin: 0 3px 2px 0;
  display: inline;
  align-items: center;
}

.new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .btn-wrapper {
  display: flex;
  gap: 15px;
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-border {
    padding: 10px 12px;
  }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-pink {
    padding: 10px 12px;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-border span {
    font-size: 14px;
    line-height: 28px;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-pink span {
    font-size: 14px;
    line-height: 28px;
  }
}

@media screen and (min-width: 481px) and (max-width: 575px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-border span {
    font-size: 12px;
    line-height: 26px;
  }
}

@media screen and (min-width: 481px) and (max-width: 575px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .our-work-right .btn-wrapper .btn-slide-pink span {
    font-size: 12px;
    line-height: 26px;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .btn-slide-border {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .btn-slide-border {
    font-size: 14px;
  }
}

@media only screen and (max-width: 375px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .btn-slide-border {
    padding: 8px 15px;
    font-size: 14px;
  }
}

.new-portfolio-outer .portfolio-slide-main .our-work .btn-slide-pink {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .btn-slide-pink {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .new-portfolio-outer .portfolio-slide-main .our-work .btn-slide-pink {
    display: none;
  }
}

.new-portfolio-outer .portfolio-outer .swipe-btn-outer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 2;
}

@media only screen and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-outer .swipe-btn-outer {
    justify-content: end;
    top: 48px;
    right: 30px;
    left: auto;
  }
}

@media only screen and (max-width: 1365px) {
  .new-portfolio-outer .portfolio-outer .swipe-btn-outer {
    height: 48px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-outer .swipe-btn-outer {
    top: 40px;
    right: 25px;
    left: auto;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-outer .swipe-btn-outer {
    display: none;
  }
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 2;
}

@media only screen and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav {
    justify-content: end;
    top: 48px;
    right: 30px;
    left: auto;
  }
}

@media only screen and (max-width: 1365px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav {
    height: 48px;
    line-height: 48px;
  }
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav {
    top: 30px;
    right: 10px;
    left: auto;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav {
    display: none;
  }
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #192020;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: var(--clr-white);
  top: 10px;
  left: auto;
  right: auto;
}

@media only screen and (max-width: 1365px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button {
    height: 48px;
    width: 48px;
  }
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button {
    height: 40px;
    width: 40px;
  }
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #192020;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button:hover:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav .owl-prev {
  left: -95px;
}

@media only screen and (min-width: 1700px) and (max-width: 1899px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav .owl-prev {
    left: -85px;
  }
}

@media only screen and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav .owl-prev {
    left: auto;
    right: 0;
    top: 0;
  }
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav .owl-next {
  right: -95px;
}

@media only screen and (min-width: 1700px) and (max-width: 1899px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav .owl-next {
    right: -85px;
  }
}

@media only screen and (max-width: 1699px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav .owl-next {
    left: 0;
    right: auto;
    top: 0;
  }
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button:hover,
.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button:focus {
  outline: none;
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button .icon {
  position: relative;
  transition: color 0.3s;
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button .icon {
    transition: none;
    width: 20px;
    height: 20px;
  }
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button:hover .icon:before {
  background-color: var(--clr-white);
}

.new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button span {
  position: relative;
  transition: color 0.3s;
  color: var(--clr-black);
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .portfolio-outer .portfolio-slide-main .owl-nav button span {
    transition: none;
  }
}

.new-portfolio-outer .div-wrapper .filter-buttons {
  margin-top: 38px;
}
@media only screen and (max-width: 1365px) {
  .new-portfolio-outer .div-wrapper .filter-buttons {
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: start !important;
    overflow: auto;
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .div-wrapper .filter-buttons {
    margin-top: 24px;
    background-color: #eeeeee63;
  }
}

.new-portfolio-outer .div-wrapper .filter-buttons .bg-white {
  border-radius: 22px;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .div-wrapper .filter-buttons .bg-white {
    border-radius: 12px;
  }

  .new-portfolio-outer .div-wrapper .filter-buttons .bg-white {
    padding: 8px;
  }
}

.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link {
  padding: 15px 30px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 152px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}

@media only screen and (max-width: 1365px) {
  .new-portfolio-outer .div-wrapper .filter-buttons .common-p-link {
    margin: 0 0 8px;
  }
}

@media only screen and (max-width: 991px) {
  .new-portfolio-outer .div-wrapper .filter-buttons .common-p-link {
    width: 100%;
    min-width: 30%;
    padding: 10px 20px;
    border-radius: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .div-wrapper .filter-buttons .common-p-link {
    width: initial;
    min-width: initial;
    padding: 10px 20px;
    flex-direction: row;
    margin: 0;
  }
}

.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link::after {
  content: "";
  height: calc(100% - 20px);
  width: 1px;
  position: absolute;
  right: 0;
  top: 10px;
  background-color: var(--clr-off-white);
}
@media only screen and (max-width: 767px) {
  .new-portfolio-outer .div-wrapper .filter-buttons .common-p-link::after {
    display: none;
  }
}

.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link:last-child::after {
  display: none;
}

.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link:last-child {
  border-right: none;
}

.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link.active {
  background-color: #e81646;
  color: var(--clr-white);
}

.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link .icon::before {
  background-color: #aaaaaa;
}

.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link.active .icon::before {
  background-color: #fff;
}

.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link .main-text {
  color: #aaaaaa;
  font-weight: 500;
}
.new-portfolio-outer .div-wrapper .filter-buttons .common-p-link.active .main-text {
  color: #ffffff;
}

.new-portfolio-outer .new-portfolio-listing-wrapper {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 40px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper {
    grid-template-columns: 1fr 400px;
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper {
    grid-template-columns: 1fr 300px;
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper {
    grid-template-columns: 1fr;
  }
}

.new-portfolio-outer .new-portfolio-listing-wrapper .leftone {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .leftone {
    gap: 30px;
  }
}
@media only screen and (max-width: 1499px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .leftone {
    gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .leftone {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .leftone {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .rightone {
    display: none;
  }
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard {
  background-color: var(--clr-white);
  border-radius: 40px;
  cursor:
    url("../img/cursor-img.svg") 15 15,
    auto;
  position: relative;
  display: block;
}
@media only screen and (max-width: 1699px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard {
    border-radius: 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard {
    border-radius: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard {
    border-radius: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard {
    border-radius: 16px;
  }
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img {
  position: relative;
}
.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img picture {
  display: block;
}
.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img img {
  border-radius: 40px 40px 0 0;
  height: 400px;
  object-fit: cover;
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img::after {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  background-image: url("./img/cursor-img.svg");
  height: 60px;
  width: 60px;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img::after {
    height: 48px;
    width: 48px;
    top: 20px;
    right: 20px;
    transform: rotate(45deg);
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img::after {
    height: 40px;
    width: 40px;
    top: 15px;
    right: 15px;
  }
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img:hover::after {
  opacity: 0;
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img:hover {
  outline: none;
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img img {
  border-radius: 40px 40px 0 0;
  height: 400px;
  object-fit: cover;
}

@media only screen and (max-width: 1699px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img img {
    border-radius: 35px 35px 0 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img img {
    border-radius: 30px 30px 0 0;
  }
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img img {
    border-radius: 20px 20px 0 0;
    height: 220px;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-img img {
    border-radius: 16px 16px 0 0;
    height: 135px;
  }
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .new-label-title {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 8px 0px 8px;
  height: 26px;
  width: max-content;
  z-index: 2;
  line-height: 0;
  font-weight: 400;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .new-label-title {
    left: 30px;
    bottom: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .new-label-title {
    left: 25px;
    bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .new-label-title {
    left: 20px;
    bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .new-label-title {
    left: 15px;
    bottom: 15px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-content .common-c-view {
    font-size: 25px;
    line-height: 2.3rem;
  }
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-grid {
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 1699px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-grid {
    padding: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-grid {
    padding: 30px;
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-grid {
    gap: 10px;
    padding: 20px;
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-grid {
    padding: 20px 15px;
  }
}

.new-portfolio-outer .new-portfolio-listing-wrapper .portfolio-casecard .section-pf-card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.new-portfolio-outer .rightone-cta {
  position: sticky;
  top: 100px;
  padding: 32px;
  border-radius: 36px;
  background-image: url("../img/cta-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (max-width: 1439px) {
  .new-portfolio-outer .rightone-cta {
    min-height: 500px;
  }
}

@media screen and (max-width: 1199px) {
  .new-portfolio-outer .rightone-cta {
    padding: 30px 20px;
    border-radius: 20px;
    min-height: 400px;
  }
}

@media screen and (max-width: 767px) {
  .new-portfolio-outer .common-c-view {
    font-size: 20px;
    line-height: 1.6rem;
  }
}

.new-portfolio-outer .rightone-cta .mt-3 {
  max-width: 550px;
  margin: 0 auto;
}
/*new portfoiio page css ends here*/

.new-portfolio-outer .no-js .owl-carousel,
.new-portfolio-outer .owl-carousel {
  opacity: 0;
}

.new-portfolio-outer .no-js .owl-carousel,
.new-portfolio-outer .owl-carousel.owl-loaded {
  opacity: 1;
}

.card-group-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media only screen and (max-width: 1499px) {
  .card-group-wrap {
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .leftone {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .card-group-wrap {
    gap: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .new-portfolio-outer .new-portfolio-listing-wrapper .leftone .card-group-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .new-portfolio-outer .rightone-cta {
    min-height: auto;
  }
}

/* .section-new-pf-lists {
  position: relative;
}

.section-new-pf-lists::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1000px;
  background-color: var(--clr-off-white);
  width: 100%;
  height: calc(100% - 1000px);
  z-index: -1;
}

@media only screen and (max-width: 1199px) {
  .section-new-pf-lists::after {
    top: 550px;
    height: calc(100% - 550px);
  }
}

@media only screen and (max-width: 767px) {
  .section-new-pf-lists::after {
    display: none;
  }

  .section-new-pf-lists {
    background-color: var(--clr-off-white);
  }
} */

/* .new-portfolio-outer .main-filter .portfolio-slide-main {
  position: relative;
}

.new-portfolio-outer .main-filter .portfolio-slide-main::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: var(--clr-off-white);
  width: 100vw;
  height: 60%;
  z-index: -1;
}

.new-portfolio-outer .new-portfolio-listing-wrapper:not(.new-portfolio-listing-wrapper-all)::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -200px;
  background-color: var(--clr-off-white);
  width: 100vw;
  height: calc(100% + 290px);
  z-index: -1;
} */

/* .new-portfolio-listing-wrapper-all::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -150px;
  background-color: var(--clr-off-white);
  width: 100vw;
  height: calc(100% + 210px);
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .new-portfolio-listing-wrapper-all::after {
    top: -100px;
  }
}

@media screen and (max-width: 767px) {
  .new-portfolio-listing-wrapper-all::after {
    top: -70px;
  }
} */

@media (min-width: 1200px) and (max-width: 1365px) {
  .new-portfolio-outer .new-portfilio-heading .font-80 {
    font-size: 40px;
  }
}

.section-new-pf-lists .new-portfolio-list-main-wrap {
  background-color: var(--clr-off-white);
  position: relative;
}

.section-new-pf-lists .new-portfolio-list-main-wrap::after {
  content: "";
  width: 100%;
  height: 36px;
  background-color: var(--clr-white);
  position: absolute;
  top: 0;
  left: 0;
}

.section-new-pf-lists .new-portfolio-list-main-wrap::before {
  content: "";
  width: 100%;
  height: calc(100% + 90px);
  background-color: var(--clr-off-white);
  position: absolute;
  bottom: -90px;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .section-new-pf-lists .new-portfolio-list-main-wrap::after {
    display: none;
  }

  .section-new-pf-lists .new-portfolio-list-main-wrap {
    padding-top: 16px;
  }
}

.section-new-pf-lists .new-portfolio-list-main-wrap .main-filter {
  position: relative;
  z-index: 1;
}

.section-new-pf-lists .mt-60 {
  margin-top: 60px;
}

@media screen and (max-width: 1599px) {
  .section-new-pf-lists .mt-60 {
    margin-top: 48px;
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .section-new-pf-lists .mt-60 {
    margin-top: 26px;
  }
}

@media screen and (max-width: 1199px) {
  .section-new-pf-lists .mt-60 {
    margin-top: 38px;
  }
}

@media screen and (max-width: 767px) {
  .section-new-pf-lists .mt-60 {
    margin-top: 28px;
  }
}

.section-new-pf-lists .mt-50 {
  margin-top: 50px;
}

@media screen and (max-width: 1599px) {
  .section-new-pf-lists .mt-50 {
    margin-top: 42px;
  }
}

@media (min-width: 1200px) and (max-width: 1365px) {
  .section-new-pf-lists .mt-50 {
    margin-top: 26px;
  }
}

@media screen and (max-width: 1199px) {
  .section-new-pf-lists .mt-50 {
    margin-top: 35px;
  }
}

@media screen and (max-width: 767px) {
  .section-new-pf-lists .mt-50 {
    margin-top: 24px;
  }
}

/* START : SD company in USA  */
.sec-discover-work-life .text-center {
  padding: 50px;
  background: #ffe9f2;
}

@media screen and (max-width: 991px) {
  .sec-discover-work-life .text-center {
    padding: 32px;
  }
}

@media screen and (max-width: 767px) {
  .sec-discover-work-life .text-center {
    padding: 20px 15px 24px;
  }
}

.usa .services-new-hero-section::after {
  content: none;
}
.usa .us-hero-section .home-hero-banner-main .our-trusted-clients {
  background-color: white;
  padding: 40px 0;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .usa .us-hero-section .home-hero-banner-main .our-trusted-clients {
    padding: 32px 0;
  }
}

@media screen and (max-width: 767px) {
  .usa .us-hero-section .home-hero-banner-main .our-trusted-clients {
    padding: 24px 0;
  }
}

/* #### */
.usa .services-new-hero-section::after {
  content: none;
}
.usa .hero-section .home-hero-banner-main .our-trusted-clients {
  background-color: white;
  padding: 40px 0px;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .usa .hero-section .home-hero-banner-main .our-trusted-clients {
    padding: 32px 0;
  }
}
@media screen and (max-width: 767px) {
  .usa .hero-section .home-hero-banner-main .our-trusted-clients {
    padding: 24px 0;
  }
}
.usa .services-new-hero-section .services-hero-section .services-hero-statistics {
  gap: 18px;
  max-width: 100%;
  display: flex;
}
@media screen and (max-width: 475px) {
  .usa .services-new-hero-section .services-hero-section .services-hero-statistics {
    gap: 10px;
  }
}
.usa .services-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards {
  background-color: rgba(34, 27, 105, 0.8);
  padding: 20px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 475px) {
  .usa .services-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards {
    padding: 10px 10px;
  }
}
@media screen and (max-width: 1199px) {
  .usa .services-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards {
    width: 48%;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .usa .services-new-hero-section .services-hero-section .services-hero-statistics .hero-statistics-cards {
    width: 100%;
  }
}
.usa .software-development-tools-tech {
  background-color: #f7f7f7;
}
.usa .software-development-tools-tech .software-development-tools-tech-slider {
  position: relative;
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider {
  border-bottom: 1px solid #ed184f;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider
  .swiper-wrapper {
  display: inline-flex;
  width: auto;
  justify-content: flex-start;
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider
  .swiper-wrapper {
  justify-content: flex-start;
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider
  .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider
  .swiper-slider-thumb {
  padding: 13px 18px 11px;
  transition: 0.3s ease-in-out;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider
  .swiper-slider-thumb
  .font-22 {
  transition: color 0.3s;
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider
  .swiper-slide-thumb-active
  .swiper-slider-thumb {
  background-color: #ed184f;
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .software-development-tools-tech-thumb-slider
  .swiper-slide-thumb-active
  .swiper-slider-thumb
  .font-22 {
  color: white;
}
.usa .software-development-tools-tech .software-development-tools-tech-slider .swiper-slider-main-slider-flex-wrapper {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  width: 100%;
  background-color: var(--clr-white);
  border-radius: 0 0 15px 15px;
}

@media screen and (max-width: 767px) {
  .usa
    .software-development-tools-tech
    .software-development-tools-tech-slider
    .swiper-slider-main-slider-flex-wrapper {
    padding: 20px 15px;
    gap: 15px;
  }
}

.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .swiper-slider-main-slider-flex-wrapper
  .technology-img {
  max-width: 100px;
  max-height: 100px;
}

@media only screen and (max-width: 1050px) {
  .usa
    .software-development-tools-tech
    .software-development-tools-tech-slider
    .swiper-slider-main-slider-flex-wrapper
    .technology-img {
    max-width: 100px;
    max-height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .usa
    .software-development-tools-tech
    .software-development-tools-tech-slider
    .swiper-slider-main-slider-flex-wrapper
    .technology-img {
    max-width: 50px;
    max-height: 50px;
  }
}
.usa
  .software-development-tools-tech
  .software-development-tools-tech-slider
  .swiper-slider-main-slider-flex-wrapper
  .technology-img
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.usa .software-development-tools-tech-button-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  height: 60px;
  align-items: center;
  line-height: 60px;
  z-index: 2;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .usa .software-development-tools-tech-button-nav {
    height: auto;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

.usa .software-development-tools-tech-button-nav button {
  height: 56px;
  width: 56px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #192020;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  background-color: var(--clr-white);
}
.usa .software-development-tools-tech-button-nav button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #192020;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.usa .software-development-tools-tech-button-nav button:hover:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}
.usa .software-development-tools-tech-button-nav button:hover {
  outline: none;
}
.usa .software-development-tools-tech-button-nav button:hover .icon:before {
  background-color: var(--clr-white);
}
.usa .software-development-tools-tech-button-nav button:focus {
  outline: none;
}
@media only screen and (max-width: 1365px) {
  .usa .software-development-tools-tech-button-nav button {
    height: 48px;
    width: 48px;
  }
}
@media only screen and (max-width: 1199px) {
  .usa .software-development-tools-tech-button-nav button {
    height: 40px;
    width: 40px;
  }
}
.usa .client-testimonials-slider-button-prev,
.usa .client-testimonials-slider-button-next {
  border: 1px solid var(--clr-white) !important;
}
.usa .client-testimonials-slider-button-prev::before,
.usa .client-testimonials-slider-button-next::before {
  background: var(--clr-white) !important;
}
.usa .client-testimonials-slider-button-prev .icon:before,
.usa .client-testimonials-slider-button-next .icon:before {
  background-color: var(--clr-white);
}
.usa .client-testimonials-slider-button-prev:hover,
.usa .client-testimonials-slider-button-next:hover {
  border: 1px solid #192020 !important;
  outline: none;
}
.usa .client-testimonials-slider-button-prev:hover .icon:before,
.usa .client-testimonials-slider-button-next:hover .icon:before {
  background-color: #192020 !important;
}
.usa .software-development-tools-tech-button-nav button .icon {
  position: relative;
  transition: color 0.3s;
}
@media only screen and (max-width: 1199px) {
  .usa .software-development-tools-tech-button-nav button .icon {
    transition: none;
    width: 20px;
    height: 20px;
  }
}
.usa .software-development-client-testimonials .software-development-client-testimonials-slider {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .usa .software-development-client-testimonials .software-development-client-testimonials-slider {
    overflow: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
  }
}
.usa
  .software-development-client-testimonials
  .software-development-client-testimonials-slider
  .client-testimonials-slider-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  width: 25%;
}
@media only screen and (max-width: 991px) {
  .usa
    .software-development-client-testimonials
    .software-development-client-testimonials-slider
    .client-testimonials-slider-wrapper {
    width: 35%;
    min-width: 35%;
  }
}
@media only screen and (max-width: 767px) {
  .usa
    .software-development-client-testimonials
    .software-development-client-testimonials-slider
    .client-testimonials-slider-wrapper {
    width: 85%;
    min-width: 85%;
    gap: 15px;
  }
}
.usa .software-development-client-testimonials .software-development-client-testimonials-slider .image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.usa
  .software-development-client-testimonials
  .software-development-client-testimonials-slider
  .image-wrapper
  .testimonial__play {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 991px) {
  .usa .software-development-client-testimonials .software-development-client-testimonials-slider .image-wrapper {
    border-radius: 15px;
  }
}
.usa
  .software-development-client-testimonials
  .software-development-client-testimonials-slider
  .client-testimonials-text-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1px;
} /*# sourceMappingURL=index.css.map */

/* #### */

/* ayush code SATRT  */
.usa .outsource-usa-bg {
  background-color: #f3f3f3;
}

.usa .outsource-usa-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .usa .outsource-usa-container {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .usa .outsource-usa-container {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.usa .outsource-usa-container .outsource-usa-content ul {
  padding-left: 20px;
}
.usa .pink-bullets {
  list-style-type: disc;
}

.usa .pink-bullets li::marker {
  color: var(--clr-blue);
}

.usa .outsource-usa-pic {
  border-radius: 20px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .usa .outsource-usa-pic {
    border-radius: 15px;
    object-fit: cover;
    height: auto;
  }
}

/* sdlaiodjilasjdliasjd */
.usa .trusted-software-bg {
  background-image: url(../img/trusted-software/trusted-software-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.usa .trusted-software-container {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 150px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1336px) {
  .usa .trusted-software-container {
    gap: 50px;
  }
}
@media screen and (max-width: 1199px) {
  .usa .trusted-software-container {
    gap: 15px;
  }
}

@media screen and (max-width: 991px) {
  .usa .trusted-software-container {
    grid-template-columns: 1fr 370px;
  }
}

@media screen and (max-width: 575px) {
  .usa .trusted-software-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.usa .trusted-software-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  .usa .trusted-software-grid {
    column-gap: 0px;
  }
}
@media screen and (max-width: 991px) {
  .usa .trusted-software-grid {
    gap: 30px;
    row-gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .usa .trusted-software-grid {
    gap: 15px;
    row-gap: 15px;
  }
}

.usa .trusted-software-grid-content {
  position: relative;
  height: 230px;
  width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .usa .trusted-software-grid-content {
    height: auto;
    width: auto;
  }
}

.usa .trusted-software-grid-content-icon {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  height: 100%;
  height: 100%;
  animation: infiniteRotate 10s linear infinite;
  opacity: 0.3;
}

@media screen and (max-width: 991px) {
  .usa .trusted-software-grid-content-icon {
    display: none;
  }
}

.usa .trusted-software {
  padding: 50px 0;
}

@media screen and (max-width: 1199px) {
  .usa .trusted-software {
    padding: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .usa .trusted-software {
    padding: 35px 0;
  }
}

@keyframes infiniteRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.usa .trusted-content-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* jaksdghfjkahsdjhasjkdha */

.usa .why-us-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .usa .why-us-container {
    gap: 30px;
    align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .usa .why-us-container {
    gap: 15px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.usa .why-us-usa-pic {
  border-radius: 20px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .usa .why-us-usa-image {
    order: -1;
  }
}

@media screen and (max-width: 767px) {
  .usa .why-us-usa-pic {
    border-radius: 15px;
    object-fit: cover;
    height: auto;
    order: -1;
  }
}

.usa .why-us-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.usa .client-testimonials-bg {
  background-image: url(../img/client-testimonials/client-testimonials-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.usa .visionary-mind-bg {
  background: linear-gradient(
    135.23deg,
    rgba(237, 24, 79, 0.15) 16.49%,
    rgba(189, 132, 242, 0.15) 51.86%,
    rgba(20, 122, 255, 0.15) 87.23%
  );
}

.usa .visionary-mind-container {
  display: grid;
  grid-template-columns: 450px 1fr;
  background-color: white;
  border-radius: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .usa .visionary-mind-container {
    display: flex;
    flex-direction: column;
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .usa .visionary-mind-container {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .usa .visionary-mind-container {
    padding: 20px 15px;
  }
}

.usa .visionary-mind-content {
  padding: 60px 42px;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

@media only screen and (max-width: 1499px) {
  .usa .visionary-mind-content {
    padding: 50px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .usa .visionary-mind-content {
    padding: 0;
    align-items: center;
    flex-direction: column-reverse;
    text-align: center;
  }
}
.usa .visionary-mind-content p {
  font-style: italic;
}
.usa .visionary-mind-pic {
  object-position: bottom;
}

@media only screen and (max-width: 1499px) {
  .usa .visionary-mind-pic {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .usa .visionary-mind-pic {
    padding-top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .usa .visionary-mind-pic {
    height: auto;
  }
}
.usa .horizontal-line {
  width: 115px;
  border-top: 2px solid var(--clr-blue);
}
@media only screen and (max-width: 991px) {
  .usa .horizontal-line {
    width: 100%;
  }
}

.usa .visionary-mind-image {
  display: flex;
  align-items: end;
}
@media only screen and (max-width: 991px) {
  .usa .visionary-mind-image {
    justify-content: center;
  }
}
@media only screen and (max-width: 991px) {
  .usa .visionary-mind-image .img-wrap {
    border-bottom: 1px solid var(--clr-off-white);
    text-align: center;
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 575px) {
  .usa .visionary-mind-image .img-wrap {
    margin: 0 0 15px;
  }
}
/* ayush code END */

.usa .usa-software-services {
  background-color: #f3f3f3;
}
.usa .usa-software-services .demand-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media only screen and (max-width: 1599px) {
  .usa .usa-software-services .demand-wrapper {
    gap: 20px;
    border-radius: 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .usa .usa-software-services .demand-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .usa .usa-software-services .demand-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 575px) {
  .usa .usa-software-services .demand-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.usa .usa-software-services .demand-wrapper .item {
  position: relative;
  display: block;
  padding: 14px 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  min-height: 416px;
}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {
  .usa .usa-software-services .demand-wrapper .item {
    min-height: 350px;
  }
}
@media only screen and (max-width: 1199px) {
  .usa .usa-software-services .demand-wrapper .item {
    min-height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .usa .usa-software-services .demand-wrapper .item {
    border-radius: 12px;
    padding: 20px 15px;
  }
}
@media only screen and (max-width: 575px) {
  .usa .usa-software-services .demand-wrapper .item {
    min-height: 370px;
  }
}
@media only screen and (max-width: 375px) {
  .usa .usa-software-services .demand-wrapper .item {
    min-height: 350px;
  }
}

.usa .usa-software-services .demand-wrapper .item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 24px 20px;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.usa .usa-software-services .demand-wrapper .item .item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 24px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media only screen and (max-width: 1599px) {
  .usa .usa-software-services .demand-wrapper .item .item-overlay {
    padding: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .usa .usa-software-services .demand-wrapper .item .item-overlay {
    padding: 16px;
  }
}

.usa .usa-software-services .demand-wrapper .item:hover .item-overlay,
.usa .usa-software-services .demand-wrapper .item:focus .item-overlay {
  opacity: 1;
  pointer-events: all;
}
.usa .usa-software-services .demand-wrapper .item:hover .item-title,
.usa .usa-software-services .demand-wrapper .item:focus .item-title {
  opacity: 0;
  visibility: hidden;
}

.usa .usa-software-services .demand-wrapper .item:hover:before,
.usa .usa-software-services .demand-wrapper .item:focus:before {
  opacity: 1;
  visibility: visible;
}

.usa .usa-cta-wrapper {
  padding: 95px 0;
}

@media only screen and (max-width: 1599px) {
  .usa .usa-cta-wrapper {
    padding: 75px 0;
  }
}

@media only screen and (max-width: 1439px) {
  .usa .usa-cta-wrapper {
    padding: 55px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .usa .usa-cta-wrapper {
    padding: 35px 0;
  }
}
@media only screen and (max-width: 991px) {
  .usa .usa-cta-wrapper {
    padding: 20px 0;
  }
}
@media only screen and (max-width: 575px) {
  .usa .usa-cta-wrapper {
    padding: 22px 15px 25px 0;
    text-align: center;
  }
}
.usa .usa-cta-wrapper.bg-usa-one {
  background: url("../img/software-development-company-in-usa/webp/big/cta-one.webp") no-repeat center;
  background-size: cover;
}
.usa .usa-cta-wrapper.bg-usa-two {
  background: url("../img/software-development-company-in-usa/webp/big/cta-two.webp") no-repeat center;
  background-size: cover;
}
.usa .usa-cta-wrapper .inner-content .content-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 1199px) {
  .usa .usa-cta-wrapper .inner-content .content-side {
    display: block;
  }
}

.usa .usa-cta-wrapper .inner-content .content-side .btn-wrap {
  flex: 0 0 auto;
}
@media only screen and (max-width: 1199px) {
  .usa .usa-cta-wrapper .inner-content .content-side .btn-wrap {
    margin-top: 20px;
  }
}

/*btn-slide-pink css starts here*/
.btn-slide-pink {
  text-transform: uppercase;
  color: #ffffff;
  padding: 16px 25px;
  justify-content: center;
  border-radius: 30px;
  background: #ed184f;
  display: inline-flex;
  position: relative;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease,
    outline 0.3s ease;
  border: 1px solid #8e0e2f;
  -webkit-clip-path: inset(0 round 10px);
  clip-path: inset(0 round 10px);
}

@media only screen and (max-width: 1599px) {
  .btn-slide-pink {
    padding: 12px 22px;
  }
}

@media only screen and (max-width: 1199px) {
  .btn-slide-pink {
    transition: none;
  }
}

@media only screen and (max-width: 767px) {
  .btn-slide-pink {
    padding: 10px 16px;
    gap: 6px;
  }
}

@media only screen and (max-width: 480px) {
  .btn-slide-pink {
    width: max-content;
  }
}

.btn-slide-pink:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  top: 0;
  left: 0;
  border-radius: 30px;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}

.btn-slide-pink:hover,
.btn-slide-pink:focus {
  color: #3b5068;
  border-color: #3b5068;
  outline: none;
}

@media only screen and (max-width: 1199px) {
  .btn-slide-pink:hover,
  .btn-slide-pink:focus {
    color: #ffffff;
    border-color: #8e0e2f;
  }
}

.btn-slide-pink:hover .icon:before,
.btn-slide-pink:focus .icon:before {
  background-color: #3b5068;
}

.btn-slide-pink:hover:before,
.btn-slide-pink:focus:before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

@media only screen and (max-width: 1199px) {
  .btn-slide-pink:hover:before,
  .btn-slide-pink:focus:before {
    display: none;
  }
}

.btn-slide-pink .icon,
.btn-slide-pink .material-symbols-rounded {
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 1199px) {
  .btn-slide-pink .icon,
  .btn-slide-pink .material-symbols-rounded {
    transition: none;
    transform: rotate(45deg);
  }
}

.btn-slide-pink span {
  position: relative;
}

.btn-slide-pink .icon:before {
  background-color: #ffffff;
}

.btn-slide-pink:hover i,
.btn-slide-pink:focus i {
  /*filter: invert(1) brightness(0);*/
  transform: rotate(45deg);
}

@media only screen and (max-width: 1199px) {
  .btn-slide-pink:hover .icon:before,
  .btn-slide-pink:focus .icon:before {
    background-color: #ffffff;
  }
}

.usa .usa-why-choose-us {
  padding: 70px 40px;
  background: url("../img/software-development-company-in-usa/webp/big/why-mi-bg.webp") no-repeat center;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .usa .usa-why-choose-us {
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .usa .usa-why-choose-us {
    padding: 35px 30px;
  }
}
@media only screen and (max-width: 991px) {
  .usa .usa-why-choose-us {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .usa .usa-why-choose-us {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .usa .usa-why-choose-us {
    padding: 12px 15px;
  }
}
.usa .usa-why-choose-us .rightside-img {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1199px) {
  .usa .usa-why-choose-us .rightside-img {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .usa .usa-why-choose-us .rightside-img img {
    max-width: 60%;
  }
}
.usa .usa-why-choose-us .inner-content {
  max-width: 870px;
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .usa .usa-why-choose-us .inner-content {
    max-width: 750px;
  }
}

.usa .usa-why-choose-us .inner-content .detail-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
@media only screen and (max-width: 1499px) {
  .usa .usa-why-choose-us .inner-content .detail-area {
    grid-gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .usa .usa-why-choose-us .inner-content .detail-area {
    grid-gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .usa .usa-why-choose-us .inner-content .detail-area {
    grid-template-columns: 1fr;
  }
}
.usa .usa-why-choose-us .inner-content .detail-area .item .sublist-title {
  position: relative;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .usa .usa-why-choose-us .inner-content .detail-area .item .sublist-title {
    padding-bottom: 8px;
  }
}

.usa .usa-why-choose-us .inner-content .detail-area .item .sublist-title:after {
  content: "";
  position: absolute;
  width: 108px;
  height: 2px;
  background-color: #ed184f;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .usa .usa-why-choose-us .inner-content .detail-area .item .sublist-title:after {
    width: 50px;
  }
}
/* END : SD company in USA */

/* ################## about us page css ######################## */

/* Hero Banner Section Styles */

.hero-banner-section {
    background: #192020;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 8vh, 120px) 0 clamp(40px, 6vh, 80px);
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(15px, 3vw, 40px);
    gap: clamp(30px, 5vw, 60px);
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.hero-text {
    flex: 1;
    color: white;
    min-width: 0; /* Prevents flex item from overflowing */
    word-wrap: break-word;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: clamp(15px, 2vw, 20px);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(1.6rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(25px, 3vw, 40px);
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight-text {
    background: #ffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero CTA Styles */
.hero-cta {
    margin-top: 40px;
}

.cta-description {
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(20px, 2.5vw, 30px);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

/* Ensure navbar contact button styles work in hero section */
.hero-cta .contact-btn {
    margin-left: 0;
    margin-right: 0;
}

/* Hero Image - Dashboard Mockup */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0; /* Prevents flex item from overflowing */
}

.dashboard-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.mockup-header {
    background: #252b2b;
    padding: 20px 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mockup-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
    background: white;
    padding: 5px;
}

.mockup-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.mockup-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.mockup-content {
    display: flex;
    height: 400px;
}

.mockup-sidebar {
    width: 200px;
    background: #f8f9fa;
    padding: 20px 0;
    border-right: 1px solid #e9ecef;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6c757d;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0 5px;
    border-radius: 5px;
}

.sidebar-item.active {
    background: #252b2b;
    color: white;
    border-right: 3px solid #ffff;
}

.sidebar-item:hover:not(.active) {
    background: #e9ecef;
    color: #495057;
}

.sidebar-item i {
    font-size: 16px;
    width: 16px;
}

.mockup-main {
    flex: 1;
    padding: 25px;
    background: white;
}

.stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
    border: 1px solid #dee2e6;
}

.stat-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

.chart-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.chart-placeholder {
    flex: 1;
    height: 150px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-container {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Pie Chart Styles */
.pie-chart {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #667eea 0deg 90deg,
        #764ba2 90deg 180deg,
        #28a745 180deg 270deg,
        #ffc107 270deg 360deg
    );
    animation: rotate 3s ease-in-out infinite;
}

.pie-chart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

/* Bar Chart Styles */
.bar-chart {
    flex: 1;
    height: 50px;
}

.bar-container {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 100%;
    justify-content: center;
}

.bar {
    width: 16px;
    background: linear-gradient(135deg, #bfc1c1 0%, #252b2b 100%);
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
    animation: growBar 2s ease-out;
}

.bar:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.bar:nth-child(1) { animation-delay: 0.1s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.3s; }
.bar:nth-child(4) { animation-delay: 0.4s; }
.bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes growBar {
    0% { height: 0; }
    100% { height: var(--bar-height, 50%); }
}


.chart-info {
    flex: 0 0 150px;
}

.chart-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.chart-info p {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0 0 15px 0;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #6c757d;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.active {
    background: #007bff;
    animation: blink 1.5s infinite;
}

.status-dot.delivered {
    background: #28a745;
}

.status-dot.revenue {
    background: #28a745;
    animation: pulse-green 2s infinite;
}

.status-dot.projects {
    background: #667eea;
    animation: pulse-blue 2s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(102, 126, 234, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

/* Background Shapes */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: clamp(150px, 20vw, 300px);
    height: clamp(150px, 20vw, 300px);
    top: 10%;
    left: clamp(-150px, -10vw, -100px);
    animation-delay: 0s;
}

.shape-2 {
    width: clamp(100px, 15vw, 200px);
    height: clamp(100px, 15vw, 200px);
    top: 60%;
    right: clamp(-75px, -5vw, -50px);
    animation-delay: 2s;
}

.shape-3 {
    width: clamp(75px, 12vw, 150px);
    height: clamp(75px, 12vw, 150px);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: clamp(40px, 6vw, 50px);
        padding: clamp(20px, 4vw, 40px);
    }
    
    .hero-text {
        order: 1;
        max-width: 100%;
    }
    
    .hero-image {
        order: 2;
        max-width: 100%;
        justify-content: center;
    }
    
    .dashboard-mockup {
        width: 100%;
        transform: perspective(800px) rotateY(-3deg) rotateX(3deg);
    }
    
    .dashboard-mockup:hover {
        transform: perspective(800px) rotateY(0deg) rotateX(0deg);
    }
    
    .mockup-content {
        height: 350px;
    }
    
    .mockup-sidebar {
        width: 160px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 2.8rem);
        margin-bottom: clamp(20px, 3vw, 30px);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        margin-bottom: clamp(15px, 2.5vw, 20px);
    }
    
    .cta-description {
        font-size: clamp(1rem, 1.3vw, 1.15rem);
        margin-bottom: clamp(20px, 3vw, 25px);
    }
    
    .hero-cta {
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .hero-banner-section {
        min-height: auto;
        padding: clamp(60px, 8vh, 100px) 0 clamp(40px, 6vh, 60px);
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: clamp(30px, 5vw, 50px);
    }
    
    .dashboard-mockup {
        transform: none;
        max-width: 100%;
        width: clamp(350px, 80vw, 600px);
    }
    
    .mockup-content {
        height: clamp(280px, 30vw, 350px);
    }
    
    .mockup-sidebar {
        width: clamp(120px, 18vw, 160px);
    }
    
    .mockup-header {
        padding: clamp(12px, 1.5vw, 20px);
    }
    
    .logo-img {
        height: clamp(30px, 4vw, 35px);
    }
    
    .mockup-title {
        font-size: clamp(1rem, 1.2vw, 1.1rem);
    }
    
    .mockup-subtitle {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }
}

@media (max-width: 768px) {
    .hero-banner-section {
        padding: clamp(60px, 10vh, 100px) 0 clamp(30px, 5vh, 60px);
        min-height: auto;
    }
    
    .hero-content {
        gap: clamp(25px, 4vw, 40px);
    }
    
    .hero-cta {
        margin-top: clamp(25px, 3vw, 40px);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    /* Button responsive adjustments */
    .hero-cta .contact-btn {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
        padding: clamp(6px, 1vw, 8px) clamp(12px, 1.5vw, 16px);
        letter-spacing: 0.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: inline-block;
    }
    
    .dashboard-mockup {
        width: 100%;
        max-width: none;
        border-radius: clamp(12px, 2vw, 20px);
    }
    
    .mockup-content {
        flex-direction: column;
        height: auto;
    }
    
    .mockup-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: clamp(10px, 1.5vw, 15px) 0;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .sidebar-item {
        white-space: nowrap;
        min-width: clamp(100px, 15vw, 120px);
        padding: clamp(6px, 1vw, 8px) clamp(12px, 1.5vw, 15px);
        margin: 0 2px;
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }
    
    .mockup-main {
        padding: clamp(15px, 2vw, 20px);
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: clamp(8px, 1vw, 10px);
    }
    
    .stat-card {
        flex: 0 0 calc(50% - 5px);
        padding: clamp(10px, 1.5vw, 12px);
    }
    
    .stat-card h3 {
        font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    }
    
    .stat-card p {
        font-size: clamp(0.7rem, 0.8vw, 0.75rem);
    }
    
    .chart-section {
        flex-direction: column;
        gap: clamp(12px, 1.5vw, 15px);
    }
    
    .chart-container {
        flex-direction: column;
        gap: clamp(15px, 2vw, 20px);
    }
    
    .pie-chart {
        width: clamp(50px, 8vw, 60px);
        height: clamp(50px, 8vw, 60px);
    }
    
    .chart-info {
        text-align: center;
    }
    
    .chart-info h4 {
        font-size: clamp(0.9rem, 1.1vw, 1rem);
    }
    
    .chart-info p {
        font-size: clamp(0.75rem, 0.9vw, 0.8rem);
    }
}

@media (max-width: 576px) {
    .hero-content {
        gap: clamp(20px, 3.5vw, 25px);
    }
    
    .stats-row {
        flex-direction: column;
        gap: clamp(6px, 1vw, 8px);
    }
    
    .stat-card {
        flex: 0 0 100%;
        width: 280px;
        margin: 0 auto;
    }
    
    .mockup-content {
        min-height: 250px;
    }
    
    .chart-placeholder {
        height: clamp(90px, 12vw, 110px);
    }
    
    .sidebar-item {
        min-width: clamp(75px, 11vw, 90px);
        padding: clamp(4px, 0.7vw, 5px) clamp(8px, 1.2vw, 10px);
    }
}

@media (max-width: 480px) {
    .hero-banner-section {
        padding: clamp(50px, 8vh, 80px) 0 clamp(25px, 4vh, 40px);
    }
    
    .hero-content {
        gap: clamp(20px, 3vw, 30px);
    }
    
    .hero-cta {
        margin-top: clamp(20px, 3vw, 30px);
    }
    
    /* Button adjustments for very small screens */
    .hero-cta .contact-btn {
        font-size: clamp(0.7rem, 1vw, 0.8rem);
        padding: clamp(6px, 1vw, 8px) clamp(10px, 1.5vw, 14px);
        letter-spacing: 0.08rem;
        min-width: 120px;
    }
    
    .dashboard-mockup {
        max-width: 100%;
        border-radius: clamp(10px, 2vw, 15px);
    }
    
    .mockup-header {
        padding: clamp(8px, 1.2vw, 12px) clamp(10px, 1.5vw, 15px);
        flex-direction: column;
        gap: clamp(6px, 1vw, 8px);
        text-align: center;
    }
    
    .mockup-logo {
        order: -1;
    }
    
    .logo-img {
        height: clamp(25px, 3vw, 30px);
    }
    
    .mockup-title {
        font-size: clamp(0.9rem, 1.1vw, 1rem);
        margin-bottom: 2px;
    }
    
    .mockup-subtitle {
        font-size: clamp(0.75rem, 0.9vw, 0.8rem);
    }
    
    .mockup-main {
        padding: clamp(12px, 1.5vw, 15px);
    }
    
    .stats-row {
        gap: clamp(6px, 1vw, 8px);
        flex-direction: column;
    }
    
    .stat-card {
        flex: 0 0 100%;
        padding: clamp(8px, 1.2vw, 10px);
    }
    
    .stat-card h3 {
        font-size: clamp(1rem, 1.3vw, 1.2rem);
    }
    
    .stat-card p {
        font-size: clamp(0.65rem, 0.8vw, 0.7rem);
    }
    
    .chart-placeholder {
        height: clamp(100px, 15vw, 120px);
        padding: clamp(12px, 1.5vw, 15px);
    }
    
    .pie-chart {
        width: clamp(40px, 6vw, 50px);
        height: clamp(40px, 6vw, 50px);
    }
    
    .bar {
        width: clamp(10px, 1.5vw, 12px);
    }
    
    .sidebar-item {
        min-width: clamp(80px, 12vw, 100px);
        font-size: clamp(0.75rem, 0.9vw, 0.8rem);
        padding: clamp(5px, 0.8vw, 6px) clamp(8px, 1.2vw, 12px);
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-cta .contact-btn {
        font-size: clamp(0.65rem, 1vw, 0.75rem);
        padding: clamp(5px, 0.8vw, 6px) clamp(8px, 1.2vw, 12px);
        letter-spacing: 0.05rem;
        min-width: 100px;
    }
    
    .mockup-header {
        padding: clamp(6px, 1vw, 10px) clamp(8px, 1.2vw, 12px);
    }
    
    .logo-img {
        height: clamp(20px, 3vw, 25px);
    }
    
    .mockup-title {
        font-size: clamp(0.8rem, 1vw, 0.9rem);
    }
    
    .mockup-subtitle {
        font-size: clamp(0.7rem, 0.8vw, 0.75rem);
    }
    
    .sidebar-item {
        min-width: clamp(70px, 10vw, 100px);
        font-size: clamp(0.7rem, 0.8vw, 0.8rem);
        padding: clamp(4px, 0.6vw, 6px) clamp(6px, 1vw, 12px);
    }
    
    .stat-card {
        padding: clamp(6px, 1vw, 8px);
    }
    
    .stat-card h3 {
        font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    }
    
    .stat-card p {
        font-size: clamp(0.6rem, 0.75vw, 0.65rem);
    }
    
    .chart-placeholder {
        height: clamp(80px, 12vw, 100px);
        padding: clamp(8px, 1.2vw, 12px);
    }
    
    .pie-chart {
        width: clamp(35px, 5vw, 40px);
        height: clamp(35px, 5vw, 40px);
    }
    
    .bar {
        width: clamp(8px, 1.2vw, 10px);
    }
}

/* Fallback for older browsers that don't support clamp() */
@supports not (font-size: clamp(1rem, 1vw, 2rem)) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    @media (min-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .cta-description {
            font-size: 1.1rem;
        }
    }
    
    @media (min-width: 1200px) {
        .hero-title {
            font-size: 3.5rem;
        }
    }
}

/* Enhanced button focus states for better accessibility */
.hero-cta .contact-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

/* Improved hover states for better user experience */
.dashboard-mockup {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-mockup:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

/* Better animation performance on mobile */
@media (prefers-reduced-motion: reduce) {
    .bg-shape,
    .pie-chart,
    .bar,
    .dashboard-mockup,
    .status-dot {
        animation: none;
    }
    
    .dashboard-mockup {
        transform: none !important;
    }
}





/* Why INJ Technologies Section - Matching Image Design */

.why-injtech-section {
    background-color: rgba(33, 37, 41,1);
    padding: 60px 0;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffff;
    text-align: center;
    margin-bottom: 50px;
}

/* Benefits Cards Row */
.benefits-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 200px;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Gradient Backgrounds */
.pink-gradient {
    background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #EAEAEB);}

.purple-gradient {
    background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #EAEAEB);}

.orange-gradient {
    background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #EAEAEB);}

.green-gradient {
    background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #EAEAEB);}

.blue-gradient {
    background: linear-gradient(to bottom, #ada996, #f2f2f2, #dbdbdb, #EAEAEB);}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid #cfcfcf;
}

.benefit-icon i {
    font-size: 20px;
    color: #000000;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 0.9rem;
    color: #000000;
    margin: 0;
    line-height: 1.4;
}

/* CTA Section */
.join-cta-section {
    background: #252b2b;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin: 60px auto 0;
    position: relative;
    border: #3b4040 1px solid;
}

.join-cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.join-cta-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.explore-btn:hover i {    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-row {
        gap: 15px;
    }
    
    .benefit-card {
        min-width: 180px;
        max-width: 220px;
        padding: 25px 15px;
    }
}

@media (max-width: 992px) {
    .benefits-row {
        justify-content: center;
    }
    
    .benefit-card {
        flex: 0 0 calc(33.333% - 15px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .why-title {
        font-size: 2rem;
    }
    
    .benefits-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .benefit-card {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
    
    .join-cta-section {
        padding: 40px 25px;
        margin: 40px 20px 0;
    }
      .join-cta-content h3 {
        font-size: 1.5rem;
    }
}


@media (max-width: 480px) {
    .why-title {
        font-size: 1.8rem;
    }
    
    .join-cta-content h3 {
        font-size: 1.3rem;
    }
      .explore-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Utility Classes */
.mb-50 {
    margin-bottom: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* What Shapes INJ Technologies' Identity Section Styles */

.identity-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.identity-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.identity-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.identity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin: 0 auto;
    padding: 0 20px;
}

.identity-card {
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.identity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vision-card {
    background: #ffc0d9;
}

.mission-card {
    background: #d0bfff;
}

.values-card {
    background: #b5f1cc;
    grid-column: 1 / -1; /* Spans across both columns */
}

.identity-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.identity-icon i {
    font-size: 24px;
    color: #2c3e50;
}

.identity-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.identity-card-text {
    color: #495057;
    line-height: 1.6;
    font-size: 1rem;
}

.values-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.value-tag {
    background: rgba(255, 255, 255, 0.7);
    border: 2px dotted #28a745;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
}

.value-tag:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .identity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .identity-title {
        font-size: 2rem;
    }
    
    .identity-subtitle {
        font-size: 1rem;
    }
    
    .identity-card {
        padding: 30px 20px;
    }
    
    .identity-card-title {
        font-size: 1.3rem;
    }
    
    .values-tags {
        gap: 8px;
    }
    
    .value-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .identity-title {
        font-size: 1.8rem;
    }
    
    .identity-card {
        padding: 25px 15px;
    }
    
    .identity-icon {
        width: 50px;
        height: 50px;
    }
    
    .identity-icon i {
        font-size: 20px;
    }
}

/* Utility Classes */
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-20 {
    margin-top: 20px;
}

.full-width {
    width: 100%;
}

/* How We Work Section Styles */

.how-we-work-section {
    background: rgba(33, 37, 41,1);
    color: white;
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 8vh, 120px) 0;
}

.how-we-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    z-index: 1;
}

.how-we-work-section > * {
    position: relative;
    z-index: 2;
}

.how-we-work-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-align: center;
    word-wrap: break-word;
}

.how-we-work-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto clamp(3rem, 5vw, 4rem);
    line-height: 1.6;
    text-align: center;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Process Cards Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: clamp(15px, 2vw, 20px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* First row - 3 cards */
.understand-card {
    grid-column: 1 / 3;
    grid-row: 1;
}

.plan-card {
    grid-column: 3 / 5;
    grid-row: 1;
}

.build-card {
    grid-column: 5 / 7;
    grid-row: 1;
}

/* Second row - 2 larger cards */
.deploy-card {
    grid-column: 1 / 4;
    grid-row: 2;
}

.grow-card {
    grid-column: 4 / 7;
    grid-row: 2;
}

.process-card {
    background: #252b2b;
    border-radius: clamp(15px, 2vw, 20px);
    padding: clamp(20px, 3vw, 25px) clamp(15px, 2.5vw, 20px);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: clamp(250px, 35vw, 280px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-card:hover::before {
    left: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.12);
}


.process-number {
    position: absolute;
    top: clamp(15px, 2vw, 20px);
    right: clamp(20px, 3vw, 25px);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.process-card:hover .process-number {
    color: rgba(255, 255, 255, 1);
}

.process-icon {
    width: clamp(50px, 6vw, 60px);
    height: clamp(50px, 6vw, 60px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(15px, 2vw, 20px);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.process-icon i {
    font-size: clamp(20px, 2.5vw, 24px);
    color: white;
}

.process-title {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    font-weight: 600;
    color: white;
    margin-bottom: clamp(8px, 1vw, 10px);
    line-height: 1.3;
}

.process-description {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: clamp(12px, 1.5vw, 15px);
    font-weight: 500;
    line-height: 1.4;
}

.process-details p {
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced hover and focus states for accessibility */
.process-card:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.process-card:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* Better animation performance and reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .process-card,
    .process-card::before,
    .process-icon,
    .process-number {
        transition: none;
        animation: none;
    }
    
    .process-card:hover {
        transform: none;
    }
    
    .process-card:hover .process-icon {
        transform: none;
    }
}

/* Ensure proper touch targets on mobile */
@media (max-width: 768px) {
    .process-card {
        min-height: clamp(180px, 22vw, 220px);
        cursor: pointer;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .process-card {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .process-card:hover {
        border-color: rgba(255, 255, 255, 0.6);
    }
    
    .process-number {
        color: rgba(255, 255, 255, 1);
    }
}

/* Print styles */
@media print {
    .how-we-work-section {
        background: white !important;
        color: black !important;
        padding: 20px 0;
    }
    
    .process-card {
        background: white !important;
        border: 1px solid #ccc !important;
        box-shadow: none !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .process-card::before {
        display: none;
    }
    
    .process-title,
    .process-description,
    .process-details p,
    .process-number {
        color: black !important;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto auto;
        gap: clamp(15px, 2vw, 18px);
    }
    
    /* First row - 2 cards */
    .understand-card {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    
    .plan-card {
        grid-column: 3 / 5;
        grid-row: 1;
    }
    
    /* Second row - 1 card centered */
    .build-card {
        grid-column: 2 / 4;
        grid-row: 2;
    }
    
    /* Third row - 2 cards */
    .deploy-card {
        grid-column: 1 / 3;
        grid-row: 3;
    }
    
    .grow-card {
        grid-column: 3 / 5;
        grid-row: 3;
    }
    
    .process-card {
        min-height: clamp(240px, 32vw, 270px);
    }
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: clamp(15px, 2.5vw, 20px);
    }
    
    /* Two column layout */
    .understand-card {
        grid-column: 1 / 2;
        grid-row: 1;
    }
    
    .plan-card {
        grid-column: 2 / 3;
        grid-row: 1;
    }
    
    .build-card {
        grid-column: 1 / 2;
        grid-row: 2;
    }
    
    .deploy-card {
        grid-column: 2 / 3;
        grid-row: 2;
    }
    
    .grow-card {
        grid-column: 1 / 3;
        grid-row: 3;
    }
    
    .process-card {
        min-height: clamp(220px, 28vw, 250px);
        padding: clamp(18px, 2.5vw, 22px) clamp(15px, 2vw, 18px);
    }
}

@media (max-width: 768px) {
    .how-we-work-section {
        padding: clamp(50px, 8vh, 80px) 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        gap: clamp(15px, 3vw, 20px);
        padding: 0 clamp(15px, 4vw, 20px);
    }
    
    /* Mobile - single column layout */
    .understand-card,
    .plan-card,
    .build-card,
    .deploy-card,
    .grow-card {
        grid-column: 1;
        grid-row: auto;
    }
    
    .process-card {
        padding: clamp(20px, 3vw, 25px) clamp(15px, 2.5vw, 20px);
        min-height: clamp(200px, 25vw, 230px);
        text-align: center;
    }
    
    .process-number {
        top: clamp(12px, 2vw, 15px);
        right: clamp(15px, 2.5vw, 20px);
    }
    
    .process-icon {
        margin: 0 auto clamp(12px, 2vw, 15px);
    }
}

@media (max-width: 576px) {
    .how-we-work-section {
        padding: clamp(40px, 6vh, 60px) 0;
    }
    
    .process-grid {
        padding: 0 clamp(12px, 3vw, 15px);
        gap: clamp(12px, 2.5vw, 15px);
    }
    
    .process-card {
        padding: clamp(18px, 2.5vw, 22px) clamp(12px, 2vw, 15px);
        min-height: clamp(180px, 22vw, 200px);
        border-radius: clamp(12px, 2vw, 15px);
    }
    
    .process-number {
        top: clamp(10px, 1.5vw, 12px);
        right: clamp(12px, 2vw, 15px);
    }
}

@media (max-width: 480px) {
    .how-we-work-section {
        padding: clamp(35px, 6vh, 50px) 0;
    }
    
    .process-grid {
        padding: 0 clamp(10px, 2.5vw, 12px);
        gap: clamp(10px, 2vw, 12px);
    }
    
    .process-card {
        padding: clamp(15px, 2vw, 18px) clamp(10px, 1.5vw, 12px);
        min-height: clamp(160px, 20vw, 180px);
    }
    
    .process-number {
        top: clamp(8px, 1.2vw, 10px);
        right: clamp(10px, 1.5vw, 12px);
    }
}

@media (max-width: 360px) {
    .how-we-work-section {
        padding: clamp(30px, 5vh, 40px) 0;
    }
    
    .process-grid {
        padding: 0 clamp(8px, 2vw, 10px);
        gap: clamp(8px, 1.5vw, 10px);
    }
    
    .process-card {
        padding: clamp(12px, 1.8vw, 15px) clamp(8px, 1.2vw, 10px);
        min-height: clamp(140px, 18vw, 160px);
        border-radius: 10px;
    }
    
    .process-number {
        top: clamp(6px, 1vw, 8px);
        right: clamp(8px, 1.2vw, 10px);
    }
    
    .process-icon {
        margin: 0 auto clamp(8px, 1.5vw, 10px);
    }
}

/* Responsive Utility Classes */
.py-80 {
    padding-top: clamp(50px, 8vh, 80px);
    padding-bottom: clamp(50px, 8vh, 80px);
}

.mb-60 {
    margin-bottom: clamp(40px, 6vh, 60px);
}

/* Fallback for browsers that don't support clamp() */
@supports not (font-size: clamp(1rem, 1vw, 2rem)) {
    .how-we-work-title {
        font-size: 2rem;
    }
    
    .how-we-work-subtitle {
        font-size: 1rem;
    }
    
    .process-title {
        font-size: 1.2rem;
    }
    
    .process-description {
        font-size: 0.95rem;
    }
    
    @media (min-width: 768px) {
        .how-we-work-title {
            font-size: 2.5rem;
        }
        
        .how-we-work-subtitle {
            font-size: 1.1rem;
        }
        
        .process-title {
            font-size: 1.4rem;
        }
        
        .process-description {
            font-size: 1rem;
        }
    }
}

/* Team Section Styles */

/* Team Section Styles */

.team-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.team-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Slider Container */
.team-slider-container {
    position: relative;
    margin: 0 auto;
    padding: 0px 30px;
}

.teamSwiper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.teamSwiper .swiper-slide {
    opacity: 1;
}

.team-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 300px;
}

.team-image {
    flex: 0 0 50%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    background: #ffff;
    position: relative;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.team-image:hover .member-photo {
    transform: scale(1.05);
}


.team-info {
    flex: 1;
    padding-left: 20px;
}

.member-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.member-position {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
    font-weight: 500;
}

.member-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Navigation - Industry Services Style */
.team-navigation {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    z-index: 10;
    margin-top: 30px;
    margin-right: 12px;
}
.team-navigation .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: '';
}
.team-navigation .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after  {
    content: '';
}
.team-navigation .swiper-button-next svg, .swiper-button-prev svg {
    height: 50%;
}
.team-navigation .team-button-prev,
.team-navigation .team-button-next {
    height: 56px;
    width: 56px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-color, #2c3e50);
    user-select: none;
    position: relative;
    overflow: hidden;
    clip-path: inset(0 round 10px);
    cursor: pointer;
    background: white;
    color: var(--text-color-primary, #2c3e50);
    transition: all 0.3s ease;
}

.team-navigation .team-button-prev::before,
.team-navigation .team-button-next::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color, #2c3e50);
    top: 0;
    left: 0;
    border-radius: 30px;
    pointer-events: none;
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-navigation .team-button-prev:hover::before,
.team-navigation .team-button-next:hover::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

.team-navigation .team-button-prev i,
.team-navigation .team-button-next i {
    color: var(--primary-color, #2c3e50);
    z-index: 2;
    position: relative;
    font-size: 14px;
    transition: color 0.3s ease;
}

.team-navigation .team-button-prev:hover i,
.team-navigation .team-button-next:hover i {
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .team-navigation {
        bottom: 0px;
        right: 20px;
        margin-top: 20px;
        margin-right: 8px;
    }
}
@media (max-width: 768px) {
    .team-title {
        font-size: 2rem;
    }
    
    .team-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .team-slider-container {
        padding: 0 40px;
    }
    
    .team-content {
        flex-direction: column;
        padding: 10px 0;
        gap: 5px;
        text-align: center;
    }
      .team-image {
        flex: none;
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .team-info {
        padding-left: 0;
    }
    
    .member-name {
        font-size: 1.6rem;
    }
    
    .member-position {
        font-size: 1rem;
    }
    
    .member-description {
        font-size: 0.95rem;
        padding: 10px;
    }
      .team-navigation {
        bottom: -35px;
        right: 20px;
        margin-top: 20px;
        margin-right: 8px;
    }
      .team-navigation .team-button-prev,
    .team-navigation .team-button-next {
        width: 32px;
        height: 32px;
    }
    
    .team-navigation .team-button-prev i,
    .team-navigation .team-button-next i {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .team-content {
        padding: 10px 0px;
    }
      .team-image {
        width: 160px;
        height: 160px;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    .team-slider-container {
        padding: 0 30px;
    }
      .team-navigation {
        /* bottom: 15px; */
        right: 15px;
        margin-top: 15px;
        margin-right: 5px;
    }
      .team-navigation .team-button-prev,
    .team-navigation .team-button-next {
        width: 28px;
        height: 28px;
    }
    
    .team-navigation .team-button-prev i,
    .team-navigation .team-button-next i {
        font-size: 10px;
    }
}

/* Utility Classes */
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mb-60 {
    margin-bottom: 60px;
}




/* .card-one {
  width: 20rem;
  height: 20rem;
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
}

.card-one:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.card-front {
  color: #fff;
  display: flex;
  align-items: center;
  border-radius: 10px;
  font-size: 24px;
  transform: rotateY(0deg);
}

.bg-konnect{
  background: #f5f8fa;
}
.bg-dhwani{
  background: #080a0b;
}
.bg-ninja{
  background: #010419;
}
.bg-hrms{
  background: #f5f8fa;
}

.card-back {
   background: linear-gradient(to right, var(--text-color-primary), var(--text-hover-color-primary));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;  
  border-radius: 10px;
  padding: 20px;
  font-size: 24px;
  transform: rotateY(180deg);
}

.card-inner .card-heading {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.3;
  z-index: 1;
  color: var(--text-color-secondary);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-inner .card-para {
  z-index: 1;
  opacity: 0.8;
  font-size: 1.125rem;
  color: var(--text-color-secondary);
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}



.card-two {
  position: relative;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(-45deg, #f89b29 0%, #ff0f7b 100% );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-two img {
  width: 48px;
  fill: #333;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-two:hover {
  /* transform: rotate(-5deg) scale(1.1); */
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */

.card__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-two:hover .card__content {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 1;
}

.card__title {
  margin: 0;
  font-size: 24px;
  color: #333;
  font-weight: 700;
}

.card__description {
  margin: 10px 0 0;
  font-size: 14px;
  color: #777;
  line-height: 1.4;
}

.card-two:hover img {
  scale: 0;
  transform: rotate(-45deg);
}


/* ################################## home expertise section ###################################### */

.expertise-section {
  padding: 0px 0px 40px 0px;
  text-align: center;
}

.section-title-expertise {
      font-size: 3rem;
    font-weight: 600;
    background: #f0f0f0;
    padding-top: 80px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  background: #f0f0f0;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 40px;
}

.expertise-card {
  padding: 20px;
  text-align: center;
}

.expertise-card img {
  height: 60px;
  margin-bottom: 18px;
}

.expertise-card h3 {
  font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.expertise-card p {
  font-size: 16px;
  color: #555;
}

.why-choose h2 {
  font-size: 28px;
  font-weight: 700;
}

.highlighted {
      font-weight: 500;
    transform: rotate(180deg);
    margin-bottom: 18px;
    color: #192020;
    font-size: 28px;
}

.advantages-grid {
     display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    width: fit-content;
    margin: 20px auto;
}

.advantage-card {
  background: #fff;
  padding: 24px;
}

.advantage-card img {
  height: 50px;
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 24px;
  color: #000;
}

    .pentagon-section {
      width: 100%;
      height: 220px;
      background: #f0f0f0;
      clip-path: polygon(50% 0%,
          100% 50%,
          100% 100%,
          0% 100%,
          0% 50%);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      transform: rotate(180deg);
    }
  
    .pentagon-section h1 {
      font-size: 40px;
      font-weight: bold;
      transform :rotate(180deg);
    }

    .br-dot{
          border-right: 1px dotted #315eb891;
    }

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .section-title-expertise {
    font-size: 2.75rem;
    padding-top: 70px;
  }

  .expertise-grid {
    padding-left: 100px;
    padding-right: 100px;
    gap: 25px;
  }

  .expertise-card img {
    height: 55px;
  }

  .expertise-card h3 {
    font-size: 30px;
  }

  .expertise-card p {
    font-size: 15px;
  }

  .pentagon-section {
    height: 200px;
  }

  .pentagon-section h1 {
    font-size: 36px;
  }

  .highlighted {
    font-size: 26px;
  }

  .advantages-grid {
    gap: 20px;
  }

  .advantage-card {
    padding: 22px;
  }

  .advantage-card img {
    height: 45px;
  }

  .advantage-card p {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .section-title-expertise {
    font-size: 2.5rem;
    padding-top: 60px;
  }

  .expertise-grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 60px;
    padding-right: 60px;
    gap: 20px;
  }

  .expertise-card img {
    height: 50px;
  }

  .expertise-card h3 {
    font-size: 28px;
  }

  .expertise-card p {
    font-size: 14px;
  }

  .pentagon-section {
    height: 190px;
  }

  .pentagon-section h1 {
    font-size: 34px;
  }

  .highlighted {
    font-size: 24px;
  }

  .advantages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .advantage-card {
    padding: 20px;
  }

  .advantage-card img {
    height: 42px;
  }

  .advantage-card p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .section-title-expertise {
    font-size: 2.5rem;
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    padding-left: 30px;
    padding-right: 30px;
    gap: 18px;
  }

  .expertise-card {
    padding: 20px;
  }

  .expertise-card img {
    height: 48px;
    margin-bottom: 14px;
  }

  .expertise-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .expertise-card p {
    font-size: 16px;
    line-height: 1.4;
  }

  .pentagon-section {
    height: 190px;
  }

  .pentagon-section h1 {
    font-size: 32px;
  }

  .highlighted {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .advantages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 18px auto;
  }

  .advantage-card {
    padding: 18px;
  }

  .advantage-card img {
    height: 38px;
    margin-bottom: 10px;
  }

  .advantage-card p {
    font-size: 18px;
  }

  .br-dot {
    border-right: none;
    border-bottom: 1px dotted #315eb891;
    padding-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .section-title-expertise {
    font-size: 2.25rem;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .expertise-grid {
    padding-left: 20px;
    padding-right: 20px;
    gap: 15px;
  }

  .expertise-card {
    padding: 16px;
  }

  .expertise-card img {
    height: 44px;
    margin-bottom: 12px;
  }

  .expertise-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .expertise-card p {
    font-size: 15px;
    line-height: 1.4;
  }

  .pentagon-section {
    height: 170px;
  }

  .pentagon-section h1 {
    font-size: 30px;
  }

  .highlighted {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 15px auto;
  }

  .advantage-card {
    padding: 16px;
  }

  .advantage-card img {
    height: 36px;
    margin-bottom: 10px;
  }

  .advantage-card p {
    font-size: 20px;
  }

  .br-dot {
    border-bottom: 1px dotted #315eb891;
    padding-bottom: 12px;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .section-title-expertise {
    font-size: 2rem;
    padding-top: 35px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .expertise-grid {
    padding-left: 15px;
    padding-right: 15px;
    gap: 12px;
  }

  .expertise-card {
    padding: 14px;
  }

  .expertise-card img {
    height: 40px;
    margin-bottom: 10px;
  }

  .expertise-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .expertise-card p {
    font-size: 14px;
    line-height: 1.3;
  }

  .pentagon-section {
    height: 160px;
  }

  .pentagon-section h1 {
    font-size: 26px;
  }

  .highlighted {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .advantage-card {
    padding: 14px;
  }

  .advantage-card img {
    height: 32px;
    margin-bottom: 8px;
  }

  .advantage-card p {
    font-size: 18px;
  }
}


/* ################################## Industries Page ############################################# */

/* Industries Hero Section */
.industries-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('../img/industries/glass.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(100px, 12vh, 150px) 0 clamp(60px, 8vh, 100px);
    position: relative;
    overflow: hidden;
}

.industries-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

.industries-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: clamp(20px, 4vw, 60px);
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: clamp(30px, 4vw, 50px);
    align-items: start;
    min-height: 50vh;
    width: 100%;
}

.hero-text-content {
    max-width: none;
    margin-bottom: clamp(30px, 4vh, 40px);
}

.industries-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: clamp(25px, 3vw, 40px);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.industries-hero-title .highlight-text {
    color: #282529;
    position: relative;
    text-shadow: 0 0 20px rgba(108, 92, 231, 0.5);
}

.industries-hero-description {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(35px, 4vw, 50px);
    font-weight: 400;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.industries-cta {
    margin-bottom: clamp(20px, 3vh, 30px);
}

.industries-cta .contact-btn {
    margin: 0;
    margin-top: clamp(20px, 2vw, 30px);
    color: var(--button-color);
    background-color: var(--text-color-secondary);
}
.industries-cta .contact-btn:hover {
    color: var(--text-color-secondary);
}
.industries-cta .contact-btn:hover::before {
    background-color: var(--button-color);
}

/* Hero Visual Content */
.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.devices-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: clamp(20px, 3vw, 30px);
    padding: 20px;
    z-index: 3;
    margin: 0 auto;
}

/* Device Frame Styles */
.mobile-device, .laptop-device, .tablet-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: cardFloat 6s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Mobile Frame */
.mobile-frame {
    width: 80px;
    height: 140px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-frame::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* Laptop Frame */
.laptop-frame {
    width: 140px;
    height: 90px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 8px 8px 2px 2px;
    padding: 5px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.laptop-frame::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -10px;
    right: -10px;
    height: 8px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 0 0 15px 15px;
}

/* Tablet Frame */
.tablet-frame {
    width: 120px;
    height: 90px;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 12px;
    padding: 6px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tablet-frame::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

/* Device Screen */
.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* Status Bar (Mobile) */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 4px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 4px;
    color: #333;
}

.time {
    font-weight: 600;
}

.battery {
    width: 8px;
    height: 4px;
    background: #4caf50;
    border-radius: 1px;
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 1px;
    width: 1px;
    height: 2px;
    background: #333;
    border-radius: 0 1px 1px 0;
}

/* Browser Bar (Laptop) */
.browser-bar {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 2px 4px;
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.browser-buttons {
    display: flex;
    gap: 2px;
}

.btn-close, .btn-minimize, .btn-maximize {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #28ca42; }

.address-bar {
    flex: 1;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin-left: 4px;
}

/* App Content Styles */
.app-content {
    padding: 4px;
    height: calc(100% - 12px);
}

/* E-commerce App */
.ecommerce-app .app-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.search-bar {
    width: 60%;
    height: 6px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 3px;
}

.cart-icon {
    width: 6px;
    height: 6px;
    background: #282529;
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.product-card {
    height: 15px;
    background: linear-gradient(145deg, #fff, #f0f0f0);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Healthcare App */
.healthcare-app .app-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.profile-icon, .notification-icon {
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
}

.health-stats {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.stat-card {
    flex: 1;
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    border-radius: 4px;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.appointment-item {
    height: 8px;
    background: linear-gradient(145deg, #fff, #f5f5f5);
    border-radius: 2px;
    border-left: 2px solid #2196f3;
}

/* Dashboard App */
.dashboard-app {
    display: flex;
    gap: 3px;
    height: 100%;
    padding: 2px;
}

.sidebar {
    width: 30%;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    padding: 3px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 1px;
}

.stats-row {
    display: flex;
    gap: 3px;
    height: 30%;
}

.stat-widget {
    flex: 1;
    background: linear-gradient(145deg, #fff, #f0f0f0);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.stat-widget:first-child {
    background: linear-gradient(145deg, #e8f5e8, #d4edda);
    border-color: rgba(40, 167, 69, 0.2);
}

.stat-widget:nth-child(2) {
    background: linear-gradient(145deg, #e3f2fd, #bbdefb);
    border-color: rgba(33, 150, 243, 0.2);
}

.stat-widget:last-child {
    background: linear-gradient(145deg, #fff3cd, #ffeaa7);
    border-color: rgba(255, 193, 7, 0.2);
}

.chart-section {
    flex: 1;
    background: linear-gradient(145deg, #fff, #f8f9fa);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 2px;
}

.chart-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(108, 92, 231, 0.1) 50%, transparent 60%);
    border-radius: 3px;
    position: relative;
}

.chart-placeholder::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    height: 60%;
    background: linear-gradient(to top, rgba(108, 92, 231, 0.2) 0%, rgba(108, 92, 231, 0.05) 100%);
    border-radius: 2px;
}

/* FinTech App */
.fintech-app .app-header {
    margin-bottom: 4px;
}

.balance-card {
    height: 20px;
    background: linear-gradient(135deg, #282529, #5a52d5);
    border-radius: 4px;
    padding: 2px;
    color: white;
}

.balance-amount {
    height: 6px;
    width: 60%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    margin-bottom: 2px;
}

.card-number {
    height: 4px;
    width: 40%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 4px;
}

.action-btn {
    height: 12px;
    background: linear-gradient(145deg, #fff, #f0f0f0);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.transaction-item {
    height: 8px;
    background: linear-gradient(145deg, #fff, #f5f5f5);
    border-radius: 2px;
    border-left: 2px solid #ff9800;
}

/* Device Labels */
.device-label {
    font-size: clamp(0.6rem, 0.8vw, 0.8rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Device Hover Effects */
.mobile-device:hover, .laptop-device:hover, .tablet-device:hover {
    transform: translateY(-5px) scale(1.05);
}

.mobile-device:hover .mobile-frame,
.laptop-device:hover .laptop-frame,
.tablet-device:hover .tablet-frame {
    box-shadow: 
        0 15px 35px rgba(108, 92, 231, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* FinTech App - Tablet Layout */
.fintech-app.tablet-layout {
    display: flex;
    gap: 4px;
    height: 100%;
    padding: 3px;
}

.app-sidebar {
    width: 35%;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 3px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.account-overview {
    background: linear-gradient(135deg, #282529, #5a52d5);
    border-radius: 4px;
    padding: 3px;
    height: 40%;
}

.account-balance {
    height: 8px;
    width: 80%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    margin-bottom: 2px;
}

.account-details {
    height: 5px;
    width: 60%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.menu-item {
    height: 8px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-item.active {
    background: rgba(108, 92, 231, 0.5);
}

.app-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.balance-cards {
    display: flex;
    gap: 3px;
    height: 30%;
}

.balance-card.primary {
    flex: 1;
    background: linear-gradient(135deg, #282529, #5a52d5);
    border-radius: 4px;
    padding: 2px;
    color: white;
}

.balance-card.secondary {
    flex: 1;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 4px;
    padding: 2px;
    color: white;
}

.card-type {
    height: 3px;
    width: 50%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    margin-bottom: 1px;
}

.quick-actions.tablet-actions {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    height: 20%;
}

.transaction-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.section-header {
    height: 6px;
    width: 40%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.transaction-list.tablet-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.transaction-list.tablet-list .transaction-item {
    height: 10px;
    background: linear-gradient(145deg, #fff, #f5f5f5);
    border-radius: 3px;
    border-left: 3px solid #ff9800;
    display: flex;
    align-items: center;
    padding: 1px 2px;
}

.tablet-list .transaction-item:nth-child(2) {
    border-left-color: #4caf50;
}

.tablet-list .transaction-item:nth-child(3) {
    border-left-color: #2196f3;
}

.tablet-list .transaction-item:nth-child(4) {
    border-left-color: #9c27b0;
}

/* Status Bar - Tablet */
.tablet-device .status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.05);
    font-size: 4px;
    color: #333;
}

.network-status {
    display: flex;
    align-items: center;
    gap: 3px;
}

.wifi-icon {
    width: 6px;
    height: 4px;
    background: #4caf50;
    border-radius: 1px;
    position: relative;
}

.wifi-icon::after {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    width: 2px;
    height: 2px;
    background: #4caf50;
    border-radius: 50%;
}

/* Industry Sections */
.industry-section {
    padding: 80px 0;
    min-height: 60vh;
    border-bottom: 1px solid #e9ecef;
}

.industry-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industry-content h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-content p {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.industry-section,
.retail-section {
    padding: 50px 0 !important;
}

/* Smooth scrolling for navigation */
html {
    scroll-behavior: smooth;
}

/* Navigation Tabs */
.industries-nav-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    /* background: white; */
    /* border-radius: 25px; */
    padding: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    /* border: 2px solid #e2e8f0; */
    margin: 10px auto 0;
    width: 100%;
    max-width: 1200px;
}

.nav-tab {
    text-align: center;
    padding: clamp(14px, 1.8vw, 18px) clamp(12px, 1.5vw, 16px);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    border: 2px solid #c6c6c6;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-tab span {
    font-size: clamp(0.75rem, 0.9vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    color: #6c757d;
    position: relative;
    z-index: 2;
    display: block;
    line-height: 1.2;
}

/* Active Tab Styling */
.nav-tab.active {
    background: #282529;
    border: 2px solid #282529;
    transform: translateY(-2px);
    box-shadow: 1px 1px 3px 0px #282529
}

.nav-tab.active span {
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-tab.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.103), transparent);
    z-index: 1;
}

/* Inactive Tab Hover Effects */
.nav-tab:not(.active):hover {
    background: #ffffff;
    border-color: #282529;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px #282529
}

.nav-tab:not(.active):hover span {
    color: #282529;
}

/* Industry Section Display Control */
.industry-section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.industry-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries - Consolidated at the end in decreasing order */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 2fr 1fr;
        gap: clamp(30px, 4vw, 60px);
    }
    
    .industries-hero-title {
        font-size: clamp(2.2rem, 5vw, 4rem);
    }
    
    .devices-showcase {
        max-width: 500px;
        height: 400px;
    }
    
    .industries-nav-tabs {
        gap: 10px;
        padding: 16px;
        margin-top: 15px;
    }
    
    .nav-tab span {
        font-size: clamp(0.7rem, 0.85vw, 0.85rem);
        letter-spacing: 0.2px;
    }
    
    .nav-tab {
        min-height: 55px;
        padding: clamp(12px, 1.5vw, 16px) clamp(8px, 1.2vw, 12px);
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0
    }
    
    .hero-visual-content {
        order: 1;
        margin-top: 10px;
    }
    
    .devices-showcase {
        max-width: 450px;
        margin: 0 auto;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        height: auto;
    }
    
    .industries-hero-description {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text-content {
        text-align: center;
        margin-bottom: clamp(15px, 2vh, 25px);
    }
    
    .industries-cta {
        display: flex;
        justify-content: center;
    }
    
    .laptop-device {
        grid-column: 1 / -1;
        display: flex !important;
        margin: 0 auto;
    }
    
    .laptop-frame {
        width: 220px;
        height: 140px;
    }
    
    .mobile-device, .tablet-device {
        display: none !important;
    }
    
    .industries-nav-tabs {
        margin-top: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .industries-hero-section {
        min-height: auto;
        padding: clamp(80px, 10vh, 120px) 0 clamp(40px, 6vh, 80px);
        background-attachment: scroll;
    }
    
    .devices-showcase {
        max-width: 400px;
        gap: clamp(15px, 2vw, 25px);
    }
    
    .industries-hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
        margin-bottom: clamp(20px, 2.5vw, 30px);
    }
    
    .industries-hero-description {
        font-size: clamp(0.9rem, 1.1vw, 1.1rem);
        margin-bottom: clamp(25px, 3vw, 40px);
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mobile-device, .laptop-device, .tablet-device {
        animation: none;
    }
    
    .mobile-device:hover, .laptop-device:hover, .tablet-device:hover {
        transform: translateY(0) scale(1.02);
    }
    
    .industry-section,
    .retail-section {
        padding: 60px 0 !important;
    }
    
    .industries-nav-tabs {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 8px;
        padding: 12px;
        border-radius: 15px;
    }
    
    .nav-tab {
        min-height: 50px;
        padding: 10px 8px;
        border-radius: 12px;
    }
    
    .nav-tab span {
        font-size: 0.7rem;
        line-height: 1.1;
    }
}

@media (max-width: 576px) {
    .industries-hero-content {
        padding: clamp(15px, 3vw, 25px);
    }
    
    .devices-showcase {
        max-width: 300px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: clamp(10px, 1.5vw, 20px);
        padding: 10px;
    }
    
    .laptop-device {
        grid-column: span 1;
    }
    
    .laptop-frame {
        width: 180px;
        height: 120px;
    }
    
    .device-label {
        font-size: 12px;
    }
    
    .industries-hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .industries-hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .industries-cta .contact-btn {
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    .industries-nav-tabs {
        gap: 8px;
        padding: 12px;
        border-radius: 15px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .industries-nav-tabs {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 6px;
        padding: 10px;
        margin-top: 5px;
    }
    
    .nav-tab {
        min-height: 45px;
        padding: 8px 6px;
    }
    
    .nav-tab span {
        font-size: 0.65rem;
        line-height: 1.1;
    }
}

@media (max-width: 400px) {
    .devices-showcase {
        max-width: 240px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .laptop-device {
        grid-column: span 1;
    }
    
    .laptop-frame {
        width: 160px;
        height: 100px;
    }
    
    .industries-hero-title {
        font-size: clamp(1.6rem, 5.5vw, 2rem);
    }
    
    .industries-hero-description {
        font-size: 0.85rem;
        max-width: 95%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}


/* Retail Section Specific Styles */
.retail-section {
    /* background: #212529; */
    background: #f8f9fa;
    min-height: 100vh;
    padding: 80px 0;
    color: white;
}

.retail-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.retail-header {
    text-align: center;
    margin-bottom: 60px;
}

.retail-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: center;
}

.retail-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #b8c5d6;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

.retail-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-header {
    margin-bottom: 20px;
}

.card-category {
    display: inline-block;
    background: rgba(108, 92, 231, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.consult-card .card-category {
    background: #212529;
}

.develop-card .card-category {
    background: #212529;
}

.modernize-card .card-category {
    background: #212529;
}

.integrate-card .card-category {
    background: #212529;
}

.develop-product-card .card-category {
    background: #212529;
}

.manage-card .card-category {
    background: #212529;
}

.card-title {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 700;
    color: #2d3748;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: #2d3748;
    line-height: 1.4;
}

.service-icon {
    color: #6c5ce7;
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
    font-size: 1rem;
}

/* Grid Layout Adjustments */
.consult-card {
    grid-row: span 2;
}
.develop-card {
    grid-row: span 1;
}
.modernize-card {
    grid-row: span 2;
}

.integrate-card {
    grid-row: span 2;
}

.manage-card {
    grid-row: span 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .retail-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .retail-section {
        padding: 60px 0;
    }
    
    .retail-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .retail-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .service-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .retail-hero-content {
        padding: 0 15px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .card-content {
        gap: 10px;
    }
}

/* Hospitality Section Styles */
#restaurants-hospitality {
    background: #f8f9fa;
    padding: 80px 0;
}

.hospitality-header {
    text-align: left;
    margin-bottom: 60px;
    max-width: 100%;
}

.hospitality-header .retail-title {
    color: #1a1a1a;
}

.hospitality-header .retail-subtitle {
    color: #666666;
}

.hospitality-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Category Links */
.hospitality-categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #374151;
    text-decoration: none;
    transition: all 0.5s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.category-item .category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.category-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: #252b2b;
    transition: 0.5s all ease;
    z-index: -1;
}

.category-item:hover,
.category-item.active {
    color: #ffffff;
    transform: translateX(5px);
    border-color: #252b2b;
}

.category-item:hover::before,
.category-item.active::before {
    left: 0;
    right: 0;
    opacity: 1;
    transition: 0.5s all ease;
}

.category-item .category-header .fa-arrow-right {
    transform: rotate(315deg);
    transition: 0.5s all ease;
}

.category-item:hover .category-header .fa-arrow-right,
.category-item.active .category-header .fa-arrow-right {
    transform: rotate(360deg);
    transition: 0.5s all ease;
}

.category-tick {
    color: #a855f7;
    font-weight: bold;
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: color 0.5s ease;
}

.category-item:hover .category-tick,
.category-item.active .category-tick {
    color: #ffffff;
}

.category-item .category-header span:nth-child(2) {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.5s ease;
}

.category-item .category-header i {
    font-size: 12px;
    color: #9ca3af;
    transition: all 0.5s ease;
}

.category-item:hover .category-header i,
.category-item.active .category-header i {
    color: #ffffff;
}

/* Description Box */
.hospitality-description {
    background: #252b2b;
    padding: 35px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(74, 85, 104, 0.3);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
}

.hospitality-description p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Better alignment for categories */
.hospitality-categories {
    align-self: start;
}

.hospitality-visual {
    align-self: center;
}

/* Visual Content */
.hospitality-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 100%;
    width: 100%;
    gap: 20px;
}

.hospitality-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    height:100%;
    max-width: 400px;
}

.hospitality-image img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Duplicate styles removed - services are now styled within the description box */

/* Smooth transitions for content switching */
.hospitality-description p,
.hospitality-image img,
.hospitality-services {
    transition: opacity 0.3s ease;
}

#hospitality-description-text {
    transition: opacity 0.3s ease;
}

#hospitality-image {
    transition: opacity 0.3s ease;
}

#hospitality-services {
    transition: opacity 0.3s ease;
}

/* Hospitality Services Styles */
.hospitality-services {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.hospitality-services .service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hospitality-services .service-item:last-child {
    border-bottom: none;
}

.hospitality-services .service-icon {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hospitality-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Hide the separate visual and description sections */
    .hospitality-visual {
        display: none;
    }
    
    .hospitality-description {
        display: none;
    }
    
    /* Add section image at the top for mobile */
    .hospitality-categories::before {
        content: "";
        display: block;
        width: 100%;
        height: 500px;
        background:  no-repeat center;
        background-size: cover;
        border-radius: 12px;
        margin-bottom: 30px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    /* Different images for different industry sections */
    #retail-fmcg .hospitality-categories::before {
        background-image: url('../img/industries/industry_retail.jpg');
    }
    
    #smes-corporates .hospitality-categories::before {
        background-image: url('../img/industries/industry_corporate.jpg');
    }
    
    #research-consulting .hospitality-categories::before {
        background-image: url('../img/industries/industry_research.jpg');
    }
    
    #real-estate .hospitality-categories::before {
        background-image: url('../img/industries/industry_real_estate.jpg');
    }
    
    #healthcare .hospitality-categories::before {
        background-image: url('../img/industries/industry_health.jpg');
    }
    
    #edtech .hospitality-categories::before {
        background-image: url('../img/industries/industry_edtech.jpg');
    }
    
    #manufacturing .hospitality-categories::before {
        background-image: url('../img/industries/industry_manufacturing.jpg');
    }
    
    #hospitality .hospitality-categories::before {
        background-image: url('../img/industries/industry_restaurant.jpg');
    }
    
    #restaurants-hospitality .hospitality-categories::before {
        background-image: url('../img/industries/industry_restaurant.jpg');
    }
    
    /* Convert category items to accordion while preserving button styling */
    .hospitality-categories {
        order: 1;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Direct styling for category items in accordion mode */
    .category-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
        background: #ffffff;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        color: #374151;
        text-decoration: none;
        transition: all 0.5s ease;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
        overflow: hidden;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .category-item .category-header {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .category-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0%;
        right: 100%;
        bottom: 0;
        opacity: 0;
        background: #252b2b;
        transition: 0.5s all ease;
        z-index: -1;
    }
    
    .category-item:hover,
    .category-item.active {
        color: #ffffff;
        transform: translateX(5px);
        border-color: #252b2b;
    }
    
    .category-item:hover::before,
    .category-item.active::before {
        left: 0;
        right: 0;
        opacity: 1;
        transition: 0.5s all ease;
    }
    
    .category-item:hover .category-tick,
    .category-item.active .category-tick {
        color: #ffffff;
    }
    
    .category-item:hover .category-header i,
    .category-item.active .category-header i {
        color: #ffffff;
    }
    
    .category-item:hover .category-header .fa-arrow-right,
    .category-item.active .category-header .fa-arrow-right {
        transform: rotate(360deg);
        transition: 0.5s all ease;
    }
    
    /* Accordion content styling - Text only for mobile */
    .category-item .accordion-content {
        display: none !important;
        margin-top: 10px;
        background: #f8f9fa;
        border-radius: 16px;
        padding: 25px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        animation: slideDown 0.3s ease;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .category-item.active .accordion-content {
        display: block !important;
        opacity: 1;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Hide images in accordion content for mobile */
    .accordion-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0; /* Remove gap since we're hiding image */
        align-items: stretch;
    }
    
    .accordion-image {
        display: none; /* Hide image in mobile accordion */
    }
    
    .accordion-description {
        background: #252b2b;
        padding: 25px;
        border-radius: 12px;
        color: #ffffff;
        font-size: 16px;
        line-height: 1.6;
        font-weight: 500;
        box-shadow: 0 8px 25px rgba(74, 85, 104, 0.3);
        margin: 0; /* Remove any margin since image is hidden */
    }
    
    .accordion-description p {
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
        color: #ffffff;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .accordion-description .hospitality-services {
        margin-top: 15px;
    }
    
    .accordion-description .hospitality-services .service-item {
        font-size: 14px;
        padding: 10px 0;
        gap: 12px;
    }
}

/* Tablet adjustments for accordion */
@media (max-width: 1024px) and (min-width: 769px) {
    .accordion-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .accordion-description {
        padding: 20px;
        font-size: 15px;
    }
    
    .accordion-description p {
        font-size: 15px;
        padding-bottom: 15px;
    }
    
    .accordion-description .hospitality-services .service-item {
        font-size: 13px;
        padding: 8px 0;
    }
}

@media (max-width: 992px) {
    .hospitality-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hospitality-content-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .hospitality-visual {
        order: 1;
        justify-self: center;
    }
    
    .hospitality-categories {
        order: 2;
    }
    
    .hospitality-description {
        order: 3;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hospitality-content-grid {
        gap: 30px;
    }
    
    .hospitality-visual {
        order: 1;
        justify-self: center;
    }
    
    .hospitality-categories {
        order: 2;
    }
    
    .hospitality-description {
        order: 3;
        min-height: 400px;
        padding: 25px;
        font-size: 16px;
    }
    
    .hospitality-description p {
        font-size: 16px;
    }
    
    .category-item {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .category-item span:nth-child(2) {
        font-size: 13px;
    }
    
    .hospitality-services .service-item {
        font-size: 14px;
        padding: 12px 0;
    }
}

@media (max-width: 576px) {
    .hospitality-header .retail-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hospitality-header .retail-subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Smaller section image for mobile */
    .hospitality-categories::before {
        height: 200px;
        margin-bottom: 25px;
    }
    
    /* Mobile accordion adjustments */
    .category-item .accordion-content {
        padding: 20px;
    }
    
    .accordion-description {
        padding: 20px;
        font-size: 14px;
    }
    
    .accordion-description p {
        font-size: 14px;
        padding-bottom: 15px;
    }
    
    .accordion-description .hospitality-services .service-item {
        font-size: 13px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .hospitality-content-grid {
        gap: 20px;
    }
    
    .hospitality-description {
        padding: 20px;
        font-size: 14px;
        min-height: 350px;
    }
    
    .hospitality-description p {
        font-size: 14px;
    }
    
    .category-item {
        padding: 10px 12px;
    }
    
    .hospitality-services {
        gap: 15px;
    }
    
    .hospitality-services .service-item {
        font-size: 13px;
        padding: 10px 0;
    }
    
    /* Very small devices - smaller image */
    .hospitality-categories::before {
        height: 180px;
        margin-bottom: 20px;
    }
    
    /* Smaller accordion on very small screens */
    .category-item .accordion-content {
        padding: 15px;
    }
    
    .accordion-description {
        padding: 15px;
        font-size: 13px;
    }
    
    .accordion-description p {
        font-size: 13px;
        padding-bottom: 12px;
    }
}

/* EdTech Section Styles */
.edtech-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.edtech-header {
    text-align: center;
    margin-bottom: 60px;
}

.edtech-header .retail-title {
    color: #1a1a1a;
}
.edtech-header .retail-subtitle {
    color: #666666;
}
.edtech-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.edtech-left-content {
    padding-right: 40px;
}

.edtech-main-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 30px;
}

.edtech-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.edtech-description strong {
    color: #333333;
    font-weight: 600;
}

.edtech-highlight {
    color: #7c3aed;
    font-weight: 600;
}

/* Who We Inspire and Empower Section */
.who-we-inspire {
    margin-top: 40px;
}

.inspire-title {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.inspire-description {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stakeholder-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #282529;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    min-height: 70px;
}


.stakeholder-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #ffff;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}


.stakeholder-text {
    font-size: 0.9rem;
    color: #ffff;
    font-weight: 500;
    line-height: 1.4;
}

.edtech-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    height: 100%;
}

.edtech-service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.edtech-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #282529;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.edtech-service-card:nth-child(1) .service-icon-wrapper {
    background: #56616199;
    color: #212529;
}

.edtech-service-card:nth-child(2) .service-icon-wrapper {
    background: #56616199;
    color: #212529;
}

.edtech-service-card:nth-child(3) .service-icon-wrapper {
    background: #56616199;
    color: #212529;
}

.edtech-service-card:nth-child(4) .service-icon-wrapper {
    background: #56616199;
    color: #212529;
}

.edtech-service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.edtech-service-card p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .edtech-content-grid {
        gap: 50px;
    }
    
    .edtech-left-content {
        padding-right: 30px;
    }
    
    .edtech-main-title {
        font-size: 2.3rem;
    }
    
    .edtech-services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .edtech-content-grid {
        gap: 40px;
    }
    
    .edtech-left-content {
        padding-right: 20px;
    }
    
    .edtech-main-title {
        font-size: 2.2rem;
    }
    
    .edtech-services-grid {
        gap: 20px;
    }
    
    .edtech-service-card {
        padding: 25px 20px;
    }
}

@media (max-width: 992px) {
    .edtech-section {
        padding: 70px 0;
    }
    
    .edtech-header {
        margin-bottom: 50px;
    }
    
    .edtech-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .edtech-left-content {
        padding-right: 0;
        text-align: center;
    }
    
    .edtech-main-title {
        font-size: 2.1rem;
    }
    
    .stakeholders-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .who-we-inspire {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .edtech-section {
        padding: 60px 0;
    }
    
    .edtech-header {
        margin-bottom: 40px;
    }
    
    .edtech-content-grid {
        gap: 40px;
    }
    
    .edtech-main-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .edtech-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .edtech-services-grid {
        gap: 20px;
    }
    
    .edtech-service-card {
        padding: 25px 20px;
    }
    
    .service-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .edtech-service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .edtech-service-card p {
        font-size: 0.9rem;
    }
    
    .stakeholders-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 400px;
    }
    
    .stakeholder-item {
        padding: 12px;
    }
    
    .stakeholder-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .stakeholder-text {
        font-size: 0.85rem;
    }
    
    .inspire-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .inspire-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .edtech-section {
        padding: 50px 0;
    }
    
    .edtech-header {
        margin-bottom: 35px;
    }
    
    .edtech-content-grid {
        gap: 35px;
    }
    
    .edtech-main-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .edtech-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .edtech-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .edtech-service-card {
        padding: 20px 15px;
    }
    
    .service-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .edtech-service-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .edtech-service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .stakeholder-item {
        padding: 10px;
        gap: 12px;
    }
    
    .stakeholder-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .stakeholder-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .inspire-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .inspire-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .who-we-inspire {
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .edtech-section {
        padding: 40px 0;
    }
    
    .edtech-header {
        margin-bottom: 30px;
    }
    
    .edtech-content-grid {
        gap: 30px;
    }
    
    .edtech-main-title {
        font-size: 1.6rem;
    }
    
    .edtech-description {
        font-size: 0.9rem;
    }
    
    .edtech-services-grid {
        gap: 12px;
    }
    
    .edtech-service-card {
        padding: 18px 12px;
    }
    
    .service-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .edtech-service-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .edtech-service-card p {
        font-size: 0.8rem;
    }
    
    .stakeholder-item {
        padding: 8px;
        gap: 10px;
    }
    
    .stakeholder-text {
        font-size: 0.75rem;
    }
    
    .inspire-title {
        font-size: 0.95rem;
    }
    
    .inspire-description {
        font-size: 0.85rem;
    }
}

/* SMEs & Corporates Section Styles */
.sme-corporate-section {
    padding: 80px 0;
    background: #212529;
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.sme-corporate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: backgroundPulse 8s ease-in-out infinite;
    z-index: 1;
}

.sme-corporate-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: backgroundRotate 20s linear infinite;
    z-index: 1;
}

/* Animation Keyframes */
@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes backgroundRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.sme-corporate-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 3;
}

.sme-corporate-header .retail-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.sme-corporate-header .retail-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #adb5bd;
    margin: 0 auto;
    line-height: 1.6;
}

.sme-corporate-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.sme-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.sme-service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 3;
    animation: cardFloat 6s ease-in-out infinite;
}

.sme-service-card:nth-child(even) {
    animation-delay: -3s;
}

.sme-service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(111, 66, 193, 0.2);
    background: rgba(255, 255, 255, 1);
}

.sme-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(111, 66, 193, 0.1), transparent);
    transition: all 0.5s ease;
}

.sme-service-card:hover::before {
    left: 100%;
}

.sme-service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 15px;
    line-height: 1.3;
}

.sme-service-card .service-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

.sme-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sme-service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-left: 0;
}

.sme-service-list li:last-child {
    margin-bottom: 0;
}

.sme-service-list li::before {
    content: '✓';
    color: #6f42c1;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.sme-service-list li span {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sme-corporate-header .retail-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .sme-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sme-corporate-header .retail-title {
        font-size: 2.5rem;
    }
    
    .sme-service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .sme-corporate-section {
        padding: 60px 0;
    }
    
    .sme-corporate-header {
        margin-bottom: 40px;
    }
    
    .sme-corporate-header .retail-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .sme-corporate-header .retail-subtitle {
        font-size: 1.1rem;
    }
    
    .sme-corporate-content {
        padding: 0 15px;
    }
    
    .sme-service-card {
        padding: 25px 20px;
    }
    
    .sme-service-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .sme-corporate-header .retail-title {
        font-size: 1.8rem;
    }
    
    .sme-service-card {
        padding: 20px 15px;
    }
    
    .sme-services-grid {
        gap: 20px;
    }
}

/* Healthcare Section Styles */
.healthcare-section {
    padding: 80px 0;
    background: #212529;
    position: relative;
}

.healthcare-header {
    text-align: center;
    margin-bottom: 60px;
}

.healthcare-header .retail-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.healthcare-header .retail-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #adb5bd;
    margin: 0 auto;
    line-height: 1.6;
}

.healthcare-content-grid {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Side - Service Buttons */
.healthcare-services-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.healthcare-service-btn {
    background: #252b2b;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 25px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.healthcare-service-btn .service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.healthcare-service-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: #343a40;
    transition: 0.5s all ease;
    z-index: -1;
}

.healthcare-service-btn:hover {
    color: #ffffff;
    transform: translateX(5px);
    border-color: #343a40;
}

.healthcare-service-btn:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    transition: 0.5s all ease;
}

.healthcare-service-btn .service-header svg,
.healthcare-service-btn .service-header i {
    font-size: 1rem;
    color: #ffffff;
    transform: rotate(315deg);
    transition: all 0.5s ease;
}

.healthcare-service-btn.active .service-header svg,
.healthcare-service-btn.active .service-header i {
    transform: rotate(360deg);
}

.healthcare-service-btn:hover .service-header svg,
.healthcare-service-btn:hover .service-header i {
    color: #ffffff;
    transform: rotate(360deg);
}

.healthcare-service-btn.inactive {
    background: rgb(255, 255, 255);
    color: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.healthcare-service-btn.inactive::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: #343a40;
    transition: 0.5s all ease;
    z-index: -1;
}

.healthcare-service-btn.inactive:hover {
    color: #ffff;
    transform: translateX(5px);
    border-color: #f8f9fa;
}

.healthcare-service-btn.inactive:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    transition: 0.5s all ease;
}

.healthcare-service-btn.inactive .service-header svg,
.healthcare-service-btn.inactive .service-header i {
    color: #6c757d;
    transform: rotate(315deg);
    transition: all 0.5s ease;
}

.healthcare-service-btn.inactive:hover .service-header svg,
.healthcare-service-btn.inactive:hover .service-header i {
    color: #ffff;
    transform: rotate(360deg);
}

/* Center - Image */
.healthcare-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.healthcare-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Right Side - Content */
.healthcare-content-info {
    padding-left: 20px;
}

.healthcare-service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.healthcare-service-description {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #adb5bd;
    line-height: 1.6;
    margin-bottom: 30px;
}

.healthcare-service-description .highlight-link {
    color: #ffff;
    text-decoration: underline;
    font-weight: 600;
}

.healthcare-team-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.healthcare-role-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #adb5bd;
}

.healthcare-role-icon {
    width: 20px;
    height: 20px;
    background: #ffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.healthcare-role-icon::before {
    content: '✓';
    color: #212529;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .healthcare-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Hide the separate image and content sections */
    .healthcare-image-container {
        display: none;
    }
    
    .healthcare-content-info {
        display: none;
    }
    
    /* Convert service buttons to accordion while preserving button styling */
    .healthcare-services-nav {
        order: 1;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Direct styling for service buttons in accordion mode */
    .healthcare-service-btn {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        background: #252b2b;
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 15px 20px;
        border-radius: 25px;
        text-align: left;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        margin-bottom: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .healthcare-service-btn .service-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .healthcare-service-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0%;
        right: 100%;
        bottom: 0;
        opacity: 0;
        background: #343a40;
        transition: 0.5s all ease;
        z-index: -1;
    }
    
    .healthcare-service-btn:hover,
    .healthcare-service-btn.active {
        color: #ffffff;
        transform: translateX(5px);
        border-color: #343a40;
    }
    
    .healthcare-service-btn:hover::before,
    .healthcare-service-btn.active::before {
        left: 0;
        right: 0;
        opacity: 1;
        transition: 0.5s all ease;
    }
    
    .healthcare-service-btn:hover svg,
    .healthcare-service-btn.active svg {
        transform: rotate(360deg);
        transition: 0.5s all ease;
    }
    
    /* Accordion content styling */
    .healthcare-service-btn .accordion-content {
        display: none !important;
        margin-top: 15px;
        background: #f8f9fa;
        border-radius: 16px;
        padding: 25px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        animation: slideDown 0.3s ease;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .healthcare-service-btn.active .accordion-content {
        display: block !important;
        opacity: 1;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .accordion-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .accordion-image {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .accordion-image img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 4/3;
        object-fit: cover;
    }
    
    .accordion-description {
        background: #212529;
        padding: 25px;
        border-radius: 12px;
        color: #ffffff;
        font-size: 16px;
        line-height: 1.6;
        font-weight: 500;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    .accordion-description .healthcare-service-title {
        margin: 0 0 15px 0;
        font-size: 18px;
        line-height: 1.4;
        color: #ffffff;
        font-weight: 600;
    }
    
    .accordion-description .healthcare-service-description {
        margin: 0 0 20px 0;
        font-size: 16px;
        line-height: 1.6;
        color: #adb5bd;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .accordion-description .healthcare-team-roles {
        margin-top: 15px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .accordion-description .healthcare-role-item {
        font-size: 14px;
        padding: 10px 0;
        gap: 12px;
        color: #adb5bd;
    }
    
    .accordion-description .healthcare-role-icon {
        background: #ffffff;
    }
}

@media (max-width: 1024px) {
    .healthcare-header .retail-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .healthcare-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .healthcare-header .retail-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .healthcare-section {
        padding: 60px 0;
    }
    
    .healthcare-header {
        margin-bottom: 40px;
    }
    
    .healthcare-header .retail-title {
        font-size: 2rem;
    }
    
    .healthcare-header .retail-subtitle {
        font-size: 1.1rem;
    }
    
    .healthcare-content-grid {
        padding: 0 15px;
        gap: 30px;
    }
    
    .healthcare-team-roles {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .healthcare-header .retail-title {
        font-size: 1.8rem;
    }
    
    .healthcare-service-btn {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .healthcare-main-image {
        height: 250px;
    }
}

/* Manufacturing Section - Screenshot Design */
.manufacturing-section {
    background: #f8f9fa;
    padding: 60px 0;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.manufacturing-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Manufacturing Header Section */
.manufacturing-header {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 60px;
    text-align: center;
}

.manufacturing-header .retail-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.manufacturing-header .retail-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.6;
    color: #555;
    margin: 0 auto;
    max-width: 800px;
}

.manufacturing-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    align-items: start;
}

/* Left Panel Styling */
.manufacturing-left-panel {
    padding-right: 40px;
}

.manufacturing-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.manufacturing-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.manufacturing-features-list {
    margin-bottom: 35px;
}

.manufacturing-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.manufacturing-feature-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #282529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-check svg,
.feature-check i {
    color: white;
    font-size: 12px;
    font-weight: 600;
}

.manufacturing-feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    font-weight: 400;
}

.manufacturing-feature-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.manufacturing-cta {
    margin-top: 35px;
}
.manufacturing-cta a{
    text-decoration: none;
}

.manufacturing-cta-button {
    background: #282529;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.manufacturing-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: #ffff;
    transition: 0.5s all ease;
    z-index: -1;
}

.manufacturing-cta-button:hover {
    color: #282529;
    transform: translateX(5px);
    border-color: #343a40;
}

.manufacturing-cta-button:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    transition: 0.5s all ease;
}

.manufacturing-cta-button svg {
    font-size: 1rem;
    color: #ffffff;
    transform: rotate(315deg);
    transition: all 0.5s ease;
}

.manufacturing-cta-button:hover svg {
    color: #282529;
    transform: rotate(360deg);
}

.manufacturing-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.manufacturing-cta-button:hover::after {
    width: 300px;
    height: 300px;
}

/* Ripple effect for CTA button */
.manufacturing-cta-button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    animation: rippleEffect 0.6s ease-out;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Smooth transitions for all elements */
.manufacturing-section * {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.manufacturing-cta-button:focus {
    outline: 2px solid #84cc16;
    outline-offset: 2px;
}

.manufacturing-feature-item:focus-within .feature-check {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(40, 37, 41, 0.3);
}

/* Loading state for images */
.small-manufacturing-img,
.large-manufacturing-img {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.small-manufacturing-img[src],
.large-manufacturing-img[src] {
    animation: none;
    background: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Right Panel Styling */
.manufacturing-right-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

/* Horizontal Images Row */
.manufacturing-images-horizontal {
    display: flex;
    gap: 20px;
    height: 100%;
    align-items: stretch;
    min-height: 400px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.manufacturing-images-horizontal.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Small image (left) */
.manufacturing-small-image {
    flex: 0 0 35%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

/* Large image (right) */
.manufacturing-large-image {
    flex: 0 0 65%;
    position: relative;
}

/* Small image styling */
.small-manufacturing-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.small-manufacturing-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Large image styling */
.large-manufacturing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.large-manufacturing-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Remove belief card */
.manufacturing-belief-overlay {
    display: none;
}

/* Stats badge overlay */
.manufacturing-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manufacturing-stats-overlay:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.manufacturing-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.manufacturing-info-header i {
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    color: white;
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    min-width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(132, 204, 22, 0.3);
}

.manufacturing-info-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.stats-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.manufacturing-secondary-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin-top: 15px;
}

.secondary-manufacturing-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.manufacturing-philosophy-card {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    margin-top: 15px;
}

.philosophy-text {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

/* Remove old technology showcase styles */
.manufacturing-tech-showcase {
    display: none;
}

.tech-platform-image {
    display: none;
}

.manufacturing-secondary-image {
    display: none;
}

.manufacturing-philosophy-card {
    display: none;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .manufacturing-header {
        padding: 0 40px;
    }
    
    .manufacturing-main-grid {
        padding: 0 40px;
    }
}

@media (max-width: 1200px) {
    .manufacturing-main-grid {
        gap: 60px;
        padding: 0 30px;
    }
    
    .manufacturing-left-panel {
        padding-right: 20px;
    }
    
    .manufacturing-stats-overlay {
        max-width: 280px;
        padding: 18px 22px;
    }
    
    .manufacturing-images-horizontal {
        gap: 15px;
    }
    
    .small-manufacturing-img {
        height: 180px;
    }
    .small-manufacturing-img,
    .manufacturing-small-image {
        display: none;
    }

    .manufacturing-large-image {
    flex: auto;
}
}

@media (max-width: 992px) {
    .manufacturing-section {
        padding: 50px 0;
    }
    
    .manufacturing-header {
        padding: 0 30px;
        margin-bottom: 40px;
    }

    .manufacturing-header .retail-title {
        font-size: clamp(2rem, 3.5vw, 2.5rem);
    }

    .manufacturing-header .retail-subtitle {
        font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    }

    .manufacturing-main-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .manufacturing-left-panel {
        padding-right: 0;
        text-align: center;
    }
    
    .manufacturing-section-title {
        font-size: clamp(1.8rem, 3vw, 2.2rem);
    }
    
    .manufacturing-intro {
        font-size: 17px;
        max-width: 700px;
        margin: 0 auto 30px;
    }
    
    .manufacturing-feature-item {
        justify-content: flex-start;
        text-align: left;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    
    .manufacturing-right-panel {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .manufacturing-images-horizontal {
        height: 350px;
    }
    
    .small-manufacturing-img {
        height: 160px;
    }
    
    .manufacturing-stats-overlay {
        bottom: 15px;
        left: 15px;
        padding: 15px 18px;
        max-width: 250px;
    }
    
    .manufacturing-info-header i {
        font-size: 16px;
        min-width: 35px;
        height: 35px;
    }
    
    .manufacturing-info-header h4 {
        font-size: 14px;
    }
    
    .stats-description {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .manufacturing-section {
        padding: 40px 0;
    }
    
    .manufacturing-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .manufacturing-header .retail-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 15px;
    }

    .manufacturing-header .retail-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    .manufacturing-main-grid {
        padding: 0 20px;
        gap: 35px;
    }
    
    .manufacturing-section-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .manufacturing-intro {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .manufacturing-feature-item {
        gap: 15px;
        margin-bottom: 18px;
        flex-direction: row;
    }
    
    .manufacturing-feature-item p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .manufacturing-cta {
        margin-top: 25px;
    }
    
    .manufacturing-cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: flex;
        padding: 14px 25px;
        font-size: 13px;
    }
    
    .manufacturing-images-horizontal {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }
    
    .manufacturing-small-image,
    .manufacturing-large-image {
        width: 100%;
        height: 220px;
    }
    
    .small-manufacturing-img,
    .large-manufacturing-img {
        height: 100%;
    }
    .manufacturing-stats-overlay {
        display: none;
    }
    
    .manufacturing-info-header {
        gap: 15px;
    }
    
    .manufacturing-info-header i {
        font-size: 18px;
        min-width: 40px;
        height: 40px;
    }
    
    .manufacturing-info-header h4 {
        font-size: 15px;
    }
    
    .stats-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .manufacturing-section {
        padding: 30px 0;
    }
    
    .manufacturing-header {
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .manufacturing-header .retail-title {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        line-height: 1.1;
    }

    .manufacturing-header .retail-subtitle {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        line-height: 1.4;
    }
    
    .manufacturing-main-grid {
        padding: 0 15px;
        gap: 30px;
    }
    
    .manufacturing-section-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: 15px;
    }
    
    .manufacturing-intro {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .manufacturing-feature-item {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .manufacturing-feature-item p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .feature-check {
        width: 20px;
        height: 20px;
        margin-top: 3px;
    }
    
    .feature-check svg {
        font-size: 10px;
    }
    
    .manufacturing-cta {
        margin-top: 20px;
    }
    
    .manufacturing-cta-button {
        width: 100%;
        max-width: none;
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }
    
    .manufacturing-small-image,
    .manufacturing-large-image {
        height: 180px;
    }
    
    .manufacturing-stats-overlay {
        padding: 15px;
        margin-top: 10px;
        border-radius: 12px;
    }
    
    .manufacturing-info-header {
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }
    
    .manufacturing-info-header i {
        font-size: 14px;
        min-width: 30px;
        height: 30px;
    }
    
    .manufacturing-info-header h4 {
        font-size: 13px;
    }
    
    .stats-description {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .manufacturing-section {
        padding: 25px 0;
    }
    
    .manufacturing-header .retail-title {
        font-size: clamp(1.1rem, 6vw, 1.4rem);
    }
    
    .manufacturing-section-title {
        font-size: clamp(1rem, 6vw, 1.3rem);
    }
    
    .manufacturing-intro {
        font-size: 13px;
    }
    
    .manufacturing-feature-item p {
        font-size: 13px;
    }
    
    .manufacturing-cta-button {
        padding: 10px 18px;
        font-size: 11px;
    }
    
    .manufacturing-small-image,
    .manufacturing-large-image {
        height: 160px;
    }
    
    .manufacturing-stats-overlay {
        padding: 12px;
    }
    
    .manufacturing-info-header i {
        font-size: 14px;
        min-width: 30px;
        height: 30px;
    }
    
    .manufacturing-info-header h4 {
        font-size: 13px;
    }
    
    .stats-description {
        font-size: 11px;
    }
}

/* Real Estate Section Styles */
.real-estate-section {
    padding: 80px 0;
    background: #151919;
    position: relative;
}

.real-estate-section .real-estate-header {
    text-align: center;
    margin-bottom: 40px;
}

.real-estate-section .real-estate-header .real-estate-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.real-estate-section .real-estate-header .real-estate-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #adb5bd;
    margin: 0 auto;
    line-height: 1.6;
}


/* Main Content Layout */
.real-estate-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Project Cards Row */
.real-estate-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.real-estate-project-card {
    background-color: #1a2222;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.real-estate-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.real-estate-info-card {
    padding: 0;
}

.real-estate-card-badge {
    background: #f9f8fa;
    color: #282529;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 18px;
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    z-index: 2;
}

.real-estate-card-content-wrapper {
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.real-estate-card-info-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 10px;
}

.real-estate-card-info-description {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: #adb5bd;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.real-estate-card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.real-estate-feature-item {
    font-size: 0.95rem;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.real-estate-feature-item i {
    color: #9e94ff;
    font-size: 0.9rem;
    margin-top: 3px;
}

/* Stats Row */
.real-estate-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.real-estate-stat-image-box {
    background-color: #1a2222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.real-estate-stat-image-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(158, 148, 255, 0.3);
}

.real-estate-stat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.real-estate-stat-image-box:hover .real-estate-stat-image {
    transform: scale(1.05);
}

/* CTA Box */
.real-estate-cta-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.real-estate-cta-box a{
    text-decoration: none;

}

.real-estate-cta-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #151919;
    margin-bottom: 20px;
}

.real-estate-cta-button {
    background: #282529;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.real-estate-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: #ffff;
    transition: 0.5s all ease;
    z-index: -1;
}

.real-estate-cta-button:hover {
    color: #282529;
    transform: translateX(5px);
    border-color: #343a40;
}

.real-estate-cta-button:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    transition: 0.5s all ease;
}

.real-estate-cta-button svg {
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.5s ease;
    transform: rotate(315deg);
}

.real-estate-cta-button:hover svg {
    color: #282529;
    transform: rotate(360deg);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .real-estate-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .real-estate-projects {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .real-estate-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .real-estate-view-portfolio {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 30px;
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .real-estate-section {
        padding: 60px 0;
    }
    
    .real-estate-title {
        font-size: 2rem;
    }
    
    .real-estate-stats-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .real-estate-projects {
        grid-template-columns: 1fr;
    }
    
    .real-estate-title {
        font-size: 1.8rem;
    }
    
    .real-estate-project-card {
        height: auto;
        min-height: 320px;
    }
    
    .real-estate-stat-image-box {
        height: 200px;
    }
    
    .real-estate-cta-button {
        width: 100%;
        justify-content: space-between;
        padding: 15px 25px;
        font-size: 13px;
    }
}

/* Research & Consulting Section Styles */
.research-consulting-section {
    background: #f8f9fa;
    padding: 60px 0;
}

/* Research & Consulting Header Section */
.research-consulting-header {
    margin: 0 auto 60px;
    padding: 0 15px;
    text-align: center;
}

.research-consulting-header .retail-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.research-consulting-header .retail-subtitle {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.6;
    color: #555;
    margin: 0 auto;
}

/* Tab buttons row */
.research-consulting-tabs {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 15px;
    gap: 15px;
}

.research-consulting-tab-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.5s ease;
    flex: 1 1 calc(33.33% - 15px);
    min-width: 280px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.research-consulting-tab-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: #252b2b;
    transition: 0.5s all ease;
    z-index: -1;
}

.research-consulting-tab-item:hover::before,
.research-consulting-tab-item.active::before {
    left: 0;
    right: 0;
    opacity: 1;
    transition: 0.5s all ease;
}

.research-consulting-tab-item:hover,
.research-consulting-tab-item.active {
    color: #ffffff;
    border-color: #252b2b;
    transform: translateX(5px);
}

.research-consulting-tab-icon {
    width: 50px;
    height: 50px;
    background: #56616199;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.5s ease;
}

.research-consulting-tab-item:hover .research-consulting-tab-icon,
.research-consulting-tab-item.active .research-consulting-tab-icon {
    background: transparent;
    color: white;
}

.research-consulting-tab-icon i {
    font-size: 1.5rem;
    color: #333;
    transition: all 0.5s ease;
}

.research-consulting-tab-item:hover .research-consulting-tab-icon i,
.research-consulting-tab-item.active .research-consulting-tab-icon i {
    color: white;
    transform: scale(1.2);
}

.research-consulting-tab-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.5s ease;
    flex-grow: 1;
}

.research-consulting-tab-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    transition: all 0.5s ease;
}

.research-consulting-tab-item:hover .research-consulting-tab-title,
.research-consulting-tab-item.active .research-consulting-tab-title {
    color: white;
}

.research-consulting-tab-item .fa-arrow-right {
    color: #333;
    font-size: 1rem;
    transform: rotate(315deg);
    transition: 0.5s all ease;
}

.research-consulting-tab-item:hover .fa-arrow-right,
.research-consulting-tab-item.active .fa-arrow-right {
    color: white;
    transform: rotate(360deg);
    transition: 0.5s all ease;
}

/* Cards grid layout */
.research-consulting-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .research-consulting-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Content tabs */
.research-consulting-tab-content {
    display: none;
}

.research-consulting-tab-content.active {
    display: block;
}

/* Card styling */
.research-consulting-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.research-consulting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Card icon */
.research-consulting-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.research-consulting-card-icon i {
    font-size: 1.5rem;
    color: white;
}

/* Card content */
.research-consulting-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.3;
}

.research-consulting-card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Card features list */
.research-consulting-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.research-consulting-card-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.research-consulting-card-feature i {
    color: #4f46e5;
    font-size: 0.9rem;
    margin-top: 3px;
}

.research-consulting-card-feature-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.research-consulting-cta {
    margin-top: 30px;
}

.research-consulting-cta a {
    text-decoration: none;
}

.research-consulting-cta-button {
    background: #282529;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    transition: all 0.5s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.research-consulting-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: #ffff;
    transition: 0.5s all ease;
    z-index: -1;
}

.research-consulting-cta-button:hover {
    color: #282529;
    transform: translateX(5px);
    border-color: #343a40;
}

.research-consulting-cta-button:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    transition: 0.5s all ease;
}

.research-consulting-cta-button i {
    font-size: 1rem;
    color: #ffffff;
    transform: rotate(315deg);
    transition: all 0.5s ease;
}

.research-consulting-cta-button:hover i {
    color: #282529;
    transform: rotate(360deg);
}

/* Right Panel Styling */
.research-consulting-right-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

/* Card Grid */
.research-consulting-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.research-consulting-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border:1px solid transparent;
}

.research-consulting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #282529;
}

.research-consulting-card-icon {
    width: 60px;
    height: 60px;
    background: #56616199;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.research-consulting-card-icon i {
    color: white;
    font-size: 24px;
}

.research-consulting-card-content {
    padding: 25px;
    flex: 1;
}

.research-consulting-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.research-consulting-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.research-consulting-card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.research-consulting-card-feature {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4a5568;
    gap: 10px;
}

.research-consulting-card-feature i {
    color: #4f46e5;
    font-size: 12px;
}

/* Bottom Image */
.research-consulting-bottom-image {
    margin-top: 20px;
}

.research-consulting-full-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats badge overlay */
.research-consulting-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 230px;
    z-index: 2;
}

.research-consulting-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.research-consulting-info-header i {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    font-size: 18px;
    padding: 10px;
    border-radius: 8px;
    min-width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-consulting-info-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.stats-description {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .research-consulting-header .retail-title {
        font-size: 2.4rem;
    }
    
    .research-consulting-tabs {
        max-width: 100%;
        gap: 12px;
    }
    
    .research-consulting-tab-item {
        min-width: 250px;
        padding: 12px 18px;
    }
    
    .research-consulting-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Accordion Mode for Mobile/Tablet */
@media (max-width: 1200px) {
    .research-consulting-tabs {
        flex-direction: column;
        gap: 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .research-consulting-tab-item {
        width: 100%;
        min-width: auto;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid #e5e7eb;
        position: relative;
        flex-direction: column;
        align-items: stretch;
    }
    
    .research-consulting-tab-item:last-child {
        border-bottom: none;
    }
    
    .research-consulting-tab-item.active {
        transform: none;
    }
    
    .research-consulting-tab-item.active .fa-arrow-right {
        transform: rotate(90deg);
    }
    
    /* Accordion header wrapper */
    .research-consulting-tab-header {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        cursor: pointer;
    }
    
    /* Accordion Content */
    .research-consulting-accordion-content {
        display: none;
        padding: 0;
        margin: 0;
        background: #f8f9fa;
        border-top: 1px solid #e5e7eb;
        animation: slideDown 0.3s ease-out;
        width: 100%;
    }
    
    .research-consulting-tab-item.active .research-consulting-accordion-content {
        display: block;
    }
    
    .research-consulting-accordion-content .research-consulting-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
        margin: 0;
    }
    
    .research-consulting-accordion-content .research-consulting-card {
        padding: 20px;
        margin: 0;
    }
    
    /* Hide desktop tab content on mobile */
    .research-consulting-tab-content {
        display: none !important;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

@media (max-width: 991px) {
    .research-consulting-section {
        padding: 50px 0;
    }
    
    .research-consulting-header {
        margin-bottom: 40px;
    }
    
    .research-consulting-header .retail-title {
        font-size: 2.2rem;
    }
    
    .research-consulting-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .research-consulting-card {
        padding: 25px 20px;
    }
    
    .research-consulting-card-title {
        font-size: 1.2rem;
    }
    
    .research-consulting-card-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .research-consulting-section {
        padding: 40px 0;
    }
    
    .research-consulting-header .retail-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .research-consulting-header .retail-subtitle {
        font-size: 1rem;
    }
    
    .research-consulting-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .research-consulting-tabs {
        margin: 0 20px 20px;
    }
    
    .research-consulting-tab-item {
        padding: 15px 20px;
    }
    
    .research-consulting-tab-title {
        font-size: 0.95rem;
    }
    
    .research-consulting-tab-icon {
        width: 45px;
        height: 45px;
    }
    
    .research-consulting-tab-icon i {
        font-size: 1.3rem;
    }
    
    .research-consulting-cards {
        padding: 20px;
        gap: 15px;
    }
    
    .research-consulting-card {
        padding: 20px 18px;
    }
    
    .research-consulting-card-title {
        font-size: 1.1rem;
    }
    
    .research-consulting-card-text {
        font-size: 0.9rem;
    }
    
    .research-consulting-card-feature-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .research-consulting-section {
        padding: 30px 0;
    }
    
    .research-consulting-header .retail-title {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .research-consulting-header .retail-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .research-consulting-header {
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .research-consulting-tabs {
        margin: 0 15px 15px;
    }
    
    .research-consulting-tab-item {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .research-consulting-tab-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .research-consulting-tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .research-consulting-tab-icon i {
        font-size: 1.2rem;
    }
    
    .research-consulting-cards {
        padding: 15px;
        gap: 12px;
    }
    
    .research-consulting-card {
        padding: 18px 15px;
        min-height: auto;
    }
    
    .research-consulting-card-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .research-consulting-card-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .research-consulting-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .research-consulting-card-icon i {
        font-size: 1.3rem;
    }
    
    .research-consulting-card-features {
        gap: 8px;
    }
    
    .research-consulting-card-feature-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Research Accordion Animations */
.research-consulting-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.research-consulting-tab-item.active .research-consulting-accordion-content {
    max-height: 2000px;
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

/* Enhanced tab item styling for accordion */
@media (max-width: 1200px) {
    .research-consulting-tab-item {
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .research-consulting-tab-item:hover {
        background-color: rgba(40, 37, 41, 0.05);
    }
    
    .research-consulting-tab-item.active {
        background-color: rgba(40, 37, 41, 0.02);
    }
    
    .research-consulting-tab-item.active .research-consulting-tab-title {

        font-weight: 700;
    }
    
    .research-consulting-tab-item.active .research-consulting-tab-icon {
        background: #282529;
        color: white;
    }
    
    .research-consulting-tab-item.active .research-consulting-tab-icon i {
        color: white;
    }
}

/* Desktop tab mode improvements */
@media (min-width: 1201px) {
    .research-consulting-accordion-content {
        display: none !important;
    }
    
    .research-consulting-tab-content {
        animation: fadeIn 0.3s ease-in;
    }
    
    .research-consulting-tab-content.active {
        display: block;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional responsive improvements */
@media (max-width: 480px) {
    .research-consulting-accordion-content .research-consulting-cards {
        padding: 20px 15px;
    }
    
    .research-consulting-tab-item {
        padding: 12px 15px;
    }
    
    .research-consulting-tab-title {
        font-size: 0.85rem;
    }
    
    .research-consulting-tab-icon {
        width: 35px;
        height: 35px;
    }
    
    .research-consulting-tab-icon i {
        font-size: 1.1rem;
    }
}


/*########################### Vizual Product Page ############################################# */

/* Hero Section */
.vizual-hero-section {
    min-height: 100vh;
    background: #1a1a1a;
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.vizual-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(
        ellipse 100% 50%,
        rgba(140, 140, 140, 0.4) 0%,
        rgba(120, 120, 120, 0.3) 30%,
        rgba(100, 100, 100, 0.2) 50%,
        rgba(80, 80, 80, 0.1) 70%,
        transparent 100%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.vizual-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

/* MAIN TITLE - Centered at top */
.vizual-main-title-section {
    text-align: center;
    margin-bottom: 10px;
}

.vizual-main-title {
    font-size: 8rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 0.9;
    background: linear-gradient(180deg, #ffffff 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
}

/* THREE COMPONENTS - Row layout */
.vizual-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1100px;
}

/* COMPONENT 1 - Tagline with CTA */
.vizual-tagline-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vizual-tagline-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    font-weight: 500;
}

.vizual-cta-button {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin: 0.3125rem;
    padding: 0.625rem 1.125rem;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    color: #282529;
    background-color: white;
    border: 0.0625rem solid rgba(255, 255, 255, 0.4);
    border-radius: 3.125rem;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
    text-decoration: none;
}

.vizual-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: transparent;
    box-sizing: border-box;
    transition: 0.5s all ease;
}

.vizual-cta-button:hover {
    color: white;
    font-weight: 700;
    border: 0.0625rem solid rgba(40, 37, 41, 0.6);
    text-decoration: none;
}

.vizual-cta-button:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    background: #282529;
    border-radius: 1.875rem;
    z-index: -1;
    transition: 0.5s all ease;
}

.vizual-cta-button .fa-arrow-right {
    transform: rotate(315deg);
    transition: 0.5s all ease;
}

.vizual-cta-button:hover .fa-arrow-right {
    transform: rotate(360deg);
    transition: 0.5s all ease;
}

/* COMPONENT 2 - Product Image */
.vizual-product-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vizual-product-container {
    position: relative;
    transform: perspective(1200px) rotateY(-20deg) rotateX(10deg);
}

.vizual-dashboard-device {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 
        0 0 0 3px #333,
        0 0 0 6px #444,
        0 20px 60px rgba(0, 0, 0, 0.6);
    width: 380px;
    height: 280px;
}

.vizual-device-header {
    background: #e5e5e5;
    height: 25px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.vizual-device-controls {
    display: flex;
    gap: 6px;
}

.vizual-control-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.vizual-control-dot.red { background: #ff5f56; }
.vizual-control-dot.yellow { background: #ffbd2e; }
.vizual-control-dot.green { background: #27ca3f; }

.vizual-device-screen {
    background: white;
    height: calc(100% - 25px);
    border-radius: 0 0 8px 8px;
    padding: 0;
    overflow: hidden;
}

.vizual-dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vizual-dashboard-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vizual-chart-section {
    flex: 1;
}

.vizual-chart-title {
    font-size: 11px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}


@keyframes growUp {
    from { height: 0 !important; }
}

.vizual-metrics-section {
    display: flex;
    gap: 30px;
    padding-top: 15px;
}

.vizual-metric {
    text-align: center;
}

.vizual-metric-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1;
}

.vizual-metric-label {
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Connection Lines */
.vizual-connection-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1px;
}

.vizual-line-1 {
    width: 2px;
    height: 80px;
    top: -40px;
    left: 30%;
    transform: rotate(25deg);
}

.vizual-line-2 {
    width: 2px;
    height: 60px;
    bottom: -30px;
    right: 25%;
    transform: rotate(-30deg);
}

.vizual-line-3 {
    width: 2px;
    height: 50px;
    top: 40%;
    left: -25px;
    transform: rotate(60deg);
}

/* COMPONENT 3 - Description Card */
.vizual-description-card-section {
    display: flex;
    justify-content: flex-end;
}

.vizual-description-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 12px;
    max-width: 260px;
}

.vizual-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    text-transform: uppercase;
}

.vizual-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vizual-main-title {
        font-size: 6rem;
    }
    
    .vizual-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .vizual-tagline-section {
        align-items: center;
    }
    
    .vizual-description-card-section {
        justify-content: center;
    }
    
    .vizual-product-container {
        transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
    }
    
    .vizual-dashboard-device {
        width: 350px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .vizual-hero-container {
        padding: 0 20px;
    }
    
    .vizual-main-title {
        font-size: 4.5rem;
    }
    
    .vizual-main-title-section {
        margin-bottom: 60px;
    }
    
    .vizual-hero-content {
        gap: 40px;
    }
    
    .vizual-dashboard-device {
        width: 320px;
        height: 220px;
    }
    
    .vizual-device-screen {
        padding: 15px;
    }
    
    .vizual-bar-chart {
        height: 80px;
        gap: 6px;
    }
    
    .vizual-chart-bar {
        width: 15px;
    }
    
    .vizual-description-card {
        max-width: 100%;
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .vizual-main-title {
        font-size: 3rem;
    }
    
    .vizual-tagline-text {
        font-size: 0.9rem;
    }
    
    .vizual-dashboard-device {
        width: 280px;
        height: 200px;
    }
    
    .vizual-device-screen {
        padding: 12px;
    }
    
    .vizual-bar-chart {
        height: 60px;
        gap: 5px;
    }
    
    .vizual-chart-bar {
        width: 12px;
    }
    
    .vizual-metrics-section {
        gap: 20px;
    }
}

/* Entrance Animations */
.vizual-main-title {
    animation: fadeInDown 1s ease-out;
}

.vizual-tagline-text {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.vizual-cta-button {
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.vizual-dashboard-device {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.vizual-description-card {
    animation: fadeInRight 1s ease-out 0.9s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vizual Client Section - Industry Leaders */

.vizual-client-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.vizual-client-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.vizual-client-header {
    margin-bottom: 60px;
}

.vizual-client-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.vizual-client-subtitle {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.2;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

.vizual-client-logos {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.vizual-client-logos::before,
.vizual-client-logos::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.vizual-client-logos::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.vizual-client-logos::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.vizual-client-marquee {
    display: flex;
    align-items: center;
    animation: marqueeScroll 60s linear infinite;
    gap: 60px;
}

.vizual-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 180px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    opacity: 0.6;
    filter: grayscale(100%);
}

.vizual-client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px);
}

.vizual-client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vizual-client-marquee {
        gap: 50px;
    }
    
    .vizual-client-title {
        font-size: 2.8rem;
    }
    
    .vizual-client-logo {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .vizual-client-section {
        padding: 60px 0;
    }
    
    .vizual-client-container {
        padding: 0 20px;
    }
    
    .vizual-client-marquee {
        gap: 40px;
    }
    
    .vizual-client-title {
        font-size: 2.2rem;
    }
    
    .vizual-client-subtitle {
        font-size: 1rem;
    }
    
    .vizual-client-header {
        margin-bottom: 40px;
    }
    
    .vizual-client-logo {
        height: 60px;
        min-width: 120px;
    }
    
    .vizual-client-logos::before,
    .vizual-client-logos::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .vizual-client-marquee {
        gap: 30px;
    }
    
    .vizual-client-title {
        font-size: 1.8rem;
    }
    
    .vizual-client-logo {
        height: 50px;
        min-width: 100px;
    }
    
    .vizual-client-logos::before,
    .vizual-client-logos::after {
        width: 30px;
    }
}

/* Marquee Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.vizual-client-logos:hover .vizual-client-marquee {
    animation-play-state: paused;
}

/* Vizual Specifications Section */

.vizual-specs-section {
    background-color: #f8f9fa;
    padding: 50px 0;
    position: relative;
}

.vizual-specs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Row - Title on Left, Subtitle on Right */
.vizual-specs-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.vizual-specs-title-side {
    padding-right: 20px;
}

.vizual-specs-main-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.1;
}

.vizual-specs-subtitle-side {
    padding-left: 20px;
    display: flex;
    align-items: flex-start;
    padding-top: 10px;
}

.vizual-specs-main-subtitle {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.6;
    font-weight: 600;
    margin: 0;
}

/* Content Row - Video on Left, Benefits on Right */
.vizual-specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side - Video */
.vizual-specs-video-side {
    position: relative;
    height: 100%;
}

.vizual-specs-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vizual-specs-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f0f0f0;
}

.vizual-specs-youtube-video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.vizual-specs-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #666;
}

.vizual-specs-video-controls {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vizual-specs-play-btn {
    width: 20px;
    height: 20px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vizual-specs-progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.vizual-specs-progress {
    width: 40%;
    height: 100%;
    background: white;
    border-radius: 2px;
}

.vizual-specs-time {
    color: white;
    font-size: 12px;
    font-family: monospace;
}

.vizual-specs-volume {
    color: white;
    font-size: 14px;
}

/* Right Side - Content */
.vizual-specs-content-side {
    padding-left: 20px;
}

.vizual-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vizual-specs-item {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.vizual-specs-item:nth-child(1) { animation-delay: 0.1s; }
.vizual-specs-item:nth-child(2) { animation-delay: 0.2s; }
.vizual-specs-item:nth-child(3) { animation-delay: 0.3s; }
.vizual-specs-item:nth-child(4) { animation-delay: 0.4s; }

.vizual-specs-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.vizual-specs-item-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vizual-specs-header-row {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .vizual-specs-content {
        gap: 60px;
    }
    
    .vizual-specs-main-title {
        font-size: 2.8rem;
    }
    
    .vizual-specs-content-side {
        padding-left: 0;
    }
    
    .vizual-specs-title-side {
        padding-right: 10px;
    }
    
    .vizual-specs-subtitle-side {
        padding-left: 10px;
    }
}

@media (max-width: 768px) {
    .vizual-specs-section {
        padding: 80px 0;
    }
    
    .vizual-specs-container {
        padding: 0 20px;
    }
    
    .vizual-specs-header-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .vizual-specs-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .vizual-specs-main-title {
        font-size: 2.2rem;
    }
    
    .vizual-specs-main-subtitle {
        font-size: 1rem;
    }
    
    .vizual-specs-title-side {
        padding-right: 0;
    }
    
    .vizual-specs-subtitle-side {
        padding-left: 0;
        padding-top: 0;
    }
    
    .vizual-specs-item {
        margin-bottom: 30px;
    }
    
    .vizual-specs-item-title {
        font-size: 1.2rem;
    }
    
    .vizual-specs-item-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .vizual-specs-section {
        padding: 60px 0;
    }
    
    .vizual-specs-main-title {
        font-size: 1.8rem;
    }
    
    .vizual-specs-item-title {
        font-size: 1.1rem;
    }
    
    .vizual-specs-video-controls {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    .vizual-specs-time {
        font-size: 11px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.vizual-specs-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.vizual-specs-play-btn:hover {
    background: #f0f0f0;
    transition: background 0.2s ease;
}

/* Vizual Description Section */

.vizual-desc-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 50px 0;
    position: relative;
    color: white;
}

.vizual-desc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.vizual-desc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Content */
.vizual-desc-content-side {
    padding-right: 40px;
}

.vizual-desc-header {
    margin-bottom: 60px;
}

.vizual-desc-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 25px;
    line-height: 1.1;
}

.vizual-desc-main-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 600;
    margin: 0;
}

.vizual-desc-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vizual-desc-spec-item {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #555;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.8s ease-out forwards;
}

.vizual-desc-spec-item:nth-child(1) { animation-delay: 0.2s; }
.vizual-desc-spec-item:nth-child(2) { animation-delay: 0.4s; }
.vizual-desc-spec-item:nth-child(3) { animation-delay: 0.6s; }

.vizual-desc-spec-item:hover {
    border-left-color: #ffffff;
    transition: border-left-color 0.3s ease;
}

.vizual-desc-spec-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.vizual-desc-spec-description {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 400;
}

/* Right Side - Product Image */
.vizual-desc-image-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vizual-desc-product-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vizual-desc-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.vizual-desc-product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    text-align: center;
}

.vizual-desc-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.vizual-desc-placeholder-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.vizual-desc-placeholder-subtext {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Decorative Elements */
.vizual-desc-product-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vizual-desc-content {
        gap: 60px;
    }
    
    .vizual-desc-main-title {
        font-size: 3rem;
    }
    
    .vizual-desc-content-side {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .vizual-desc-section {
        padding: 80px 0;
    }
    
    .vizual-desc-container {
        padding: 0 20px;
    }
    
    .vizual-desc-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .vizual-desc-main-title {
        font-size: 2.5rem;
    }
    
    .vizual-desc-content-side {
        padding-right: 0;
    }
    
    .vizual-desc-header {
        margin-bottom: 40px;
    }
    
    .vizual-desc-spec-item {
        margin-bottom: 40px;
    }
    
    .vizual-desc-product-container {
        max-width: 350px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .vizual-desc-section {
        padding: 60px 0;
    }
    
    .vizual-desc-main-title {
        font-size: 2rem;
    }
    
    .vizual-desc-spec-title {
        font-size: 1.2rem;
    }
    
    .vizual-desc-spec-description {
        font-size: 0.9rem;
    }
    
    .vizual-desc-product-container {
        height: 320px;
    }
    
    .vizual-desc-placeholder-icon {
        font-size: 3rem;
    }
}

/* Animation Keyframes */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Hover Effects */
.vizual-desc-product-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

/* Vizual Pricing Section */

.vizual-pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px 0;
    position: relative;
}

.vizual-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.vizual-pricing-header {
    text-align: left;
    margin-bottom: 60px;
}

.vizual-pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
}

.vizual-pricing-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.vizual-pricing-toggle-button {
    background: #333;
    border-radius: 25px;
    padding: 8px;
    display: flex;
    position: relative;
    min-width: 120px;
}

.vizual-pricing-toggle-option {
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    background: transparent;
    border: none;
    flex: 1;
    text-align: center;
}

.vizual-pricing-toggle-option.active {
    background: #ffffff;
    color: #333;
}

.vizual-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: flex-start;
}

.vizual-pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.vizual-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vizual-pricing-card.featured {
    background: #333;
    color: #ffffff;
    border-color: #ffd700;
    transform: scale(1.05);
}

.vizual-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.vizual-pricing-card.popular {
    border-color: #ffd700;
}

.vizual-pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffd700;
    color: #333;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.vizual-pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.vizual-pricing-plan-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: inherit;
}

.vizual-pricing-card.featured .vizual-pricing-plan-name {
    color: #ffffff;
}

.vizual-pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.vizual-pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
}

.vizual-pricing-card.featured .vizual-pricing-currency {
    color: #cccccc;
}

.vizual-pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.vizual-pricing-card.featured .vizual-pricing-amount {
    color: #ffd700;
}

.vizual-pricing-period {
    font-size: 0.9rem;
    color: #666;
}

.vizual-pricing-card.featured .vizual-pricing-period {
    color: #cccccc;
}

.vizual-pricing-billing {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
}

.vizual-pricing-card.featured .vizual-pricing-billing {
    color: #cccccc;
}

.vizual-pricing-description {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.vizual-pricing-card.featured .vizual-pricing-description {
    color: #cccccc;
}

.vizual-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.vizual-pricing-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
}

.vizual-pricing-card.featured .vizual-pricing-feature {
    color: #ffffff;
}

.vizual-pricing-feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.vizual-pricing-feature.included .vizual-pricing-feature-icon {
    background: #4CAF50;
    color: #ffffff;
}

.vizual-pricing-feature.excluded .vizual-pricing-feature-icon {
    background: #f5f5f5;
    color: #999;
}

.vizual-pricing-feature.excluded {
    color: #999;
}

.vizual-pricing-card.featured .vizual-pricing-feature.excluded {
    color: #666;
}

.vizual-pricing-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0.625rem 1.125rem;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    color: white;
    background-color: #282529;
    border: 0.0625rem solid rgba(255, 255, 255, 0.4);
    border-radius: 3.125rem;
    box-sizing: border-box;
    cursor: pointer;
    transition: 0.5s;
    z-index: 1;
    text-decoration: none;
}

.vizual-pricing-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: transparent;
    box-sizing: border-box;
    transition: 0.5s all ease;
}

.vizual-pricing-cta:hover {
    color: #282529;
    font-weight: 700;
    border: 0.0625rem solid rgba(40, 37, 41, 0.6);
    text-decoration: none;
}

.vizual-pricing-cta:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    background: white;
    border-radius: 1.875rem;
    z-index: -1;
    transition: 0.5s all ease;
}

.vizual-pricing-cta .fa-arrow-right {
    transform: rotate(315deg);
    transition: 0.5s all ease;
}

.vizual-pricing-cta:hover .fa-arrow-right {
    transform: rotate(360deg);
    transition: 0.5s all ease;
}

.vizual-pricing-card.featured .vizual-pricing-cta {
    color: #282529;
    background-color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.vizual-pricing-card.featured .vizual-pricing-cta:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.6);
}

.vizual-pricing-card.featured .vizual-pricing-cta:hover::before {
    background: #282529;
}

.vizual-pricing-strikethrough {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.vizual-pricing-card.featured .vizual-pricing-strikethrough {
    color: #666;
}

.vizual-pricing-save-badge {
    background: #ffd700;
    color: #333;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 10px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vizual-pricing-cards {
        gap: 20px;
    }
    
    .vizual-pricing-card {
        padding: 30px 25px;
    }
    
    .vizual-pricing-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .vizual-pricing-section {
        padding: 80px 0;
    }
    
    .vizual-pricing-container {
        padding: 0 20px;
    }
    
    .vizual-pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vizual-pricing-card.featured {
        transform: none;
    }
    
    .vizual-pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .vizual-pricing-title {
        font-size: 2rem;
    }
    
    .vizual-pricing-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .vizual-pricing-card {
        padding: 25px 20px;
    }
    
    .vizual-pricing-amount {
        font-size: 2rem;
    }
    
    .vizual-pricing-title {
        font-size: 1.8rem;
    }
}

/* Vizual Pricing Modal */

.vizual-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.vizual-modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vizual-modal-container {
    background: white;
    border-radius: 10px;
    max-width: 450px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

.vizual-modal-header {
    padding: 20px 25px 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vizual-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0;
}

.vizual-modal-title span {
    color: #007bff;
}

.vizual-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.vizual-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.vizual-modal-body {
    padding: 0 25px 25px 25px;
    overflow: hidden;
}

.vizual-pricing-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vizual-form-group {
    display: flex;
    flex-direction: column;
}

.vizual-form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vizual-form-input {
    padding: 5px 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.vizual-form-input:focus {
    outline: none;
    border-color: #007bff;
    background: white;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.1);
}

.vizual-form-input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
    color: #666;
}

.vizual-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.vizual-form-btn {
    flex: 1;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.vizual-form-btn-cancel {
    background: #f8f9fa;
    color: #666;
    border-color: #e9ecef;
}

.vizual-form-btn-cancel:hover {
    background: #e9ecef;
    color: #333;
}

.vizual-form-btn-submit {
    position: relative;
    background: #282529;
    color: white;
    border: 2px solid rgba(40, 37, 41, 0.4);
    z-index: 1;
    overflow: hidden;
}

.vizual-form-btn-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0%;
    right: 100%;
    bottom: 0;
    opacity: 0;
    background: transparent;
    box-sizing: border-box;
    transition: 0.5s all ease;
}

.vizual-form-btn-submit:hover {
    color: #282529;
    border-color: rgba(40, 37, 41, 0.6);
}

.vizual-form-btn-submit:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    background: white;
    border-radius: 23px;
    z-index: -1;
    transition: 0.5s all ease;
}

.vizual-form-btn-submit .fa-arrow-right {
    transform: rotate(315deg);
    transition: 0.5s all ease;
}

.vizual-form-btn-submit:hover .fa-arrow-right {
    transform: rotate(360deg);
    transition: 0.5s all ease;
}

/* Loading State */
.vizual-form-btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.vizual-form-btn-submit.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Success State */
.vizual-modal-success {
    text-align: center;
    padding: 40px 30px;
}

.vizual-success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.vizual-success-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.vizual-success-message {
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vizual-modal-container {
        margin: 15px;
        max-width: none;
        max-height: 90vh;
    }
    
    .vizual-modal-header {
        padding: 15px 20px 0 20px;
        margin-bottom: 15px;
    }
    
    .vizual-modal-body {
        padding: 0 20px 20px 20px;
    }
    
    .vizual-modal-title {
        font-size: 1.2rem;
    }
    
    .vizual-form-actions {
        flex-direction: column;
    }
    
    .vizual-form-btn {
        width: 100%;
    }
    
    .vizual-pricing-form {
        gap: 12px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
