/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", sans-serif;
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-gradient: linear-gradient(59deg, rgba(0, 72, 153, 1) 0%, rgba(67, 188, 238, 1) 100%);
  /* Background color for the entire website, including individual sections */
  --default-color: #101828;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #101828;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #004899;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #101828;
  /* The default color of the main navmenu links */
  --nav-hover-color: #004899;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #101828;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #004899;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f5fe;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.form-control:focus {
  border-color: var(--accent-color) !important;
  box-shadow: none !important;
}

.form-control::placeholder {
  color: var(--default-color);
}

.form-control::-webkit-input-placeholder {
  color: var(--default-color);
}

.form-control::-moz-placeholder {
  color: var(--default-color);
}

.form-control:-ms-input-placeholder {
  color: var(--default-color);
}

.form-control:-moz-placeholder {
  color: var(--default-color);
}

.devops-analytics .owl-carousel .owl-item img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;

}

/*--------------------------------------------------------------
# Heading text
--------------------------------------------------------------*/
.heading-text {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 2.5rem;
  color: var(--default-color);
}

.heading-text span {
  color: var(--accent-color);
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #575757;
  margin-bottom: 2rem;
}

p span {
  color: var(--accent-color);
  font-weight: 500;
}

ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #575757;

}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 12px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 16px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
    /* Hide Mobile Megamenu in Desktop */
    /* Tab Navigation */
    /* Tab Content */
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 250px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border: none;
    width: 100%;
    background: transparent;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding-left: 30px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background-color: var(--surface-color);
    border-left-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    /* Content Grid Layout */
    /* Featured Banner */
    /* Resources Layout */
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(8px);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 18px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
    transform: translateX(4px);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
    transform: translateX(3px);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    transition: 0.3s;
  }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {

  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* Extended Dropdown 2 - Desktop */
@media (min-width: 1200px) {
  .extended-dropdown-2 ul {
    min-width: 380px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 5%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .extended-dropdown-2 ul li {
    min-width: auto;
    border-bottom: none;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .extended-dropdown-2 ul a {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--nav-dropdown-color);
    transition: all 0.25s ease;
    border-radius: 10px;
    background-color: transparent;
    position: relative;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 18px;
    color: var(--accent-color);
    margin: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .hero-content-home-page {
    width: 80%;
  }

  .hero-content-home-page p {
    width: 80%;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--nav-dropdown-color);
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 13px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .extended-dropdown-2 ul a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon {
    transform: translateY(-2px);
  }

  .extended-dropdown-2 ul a:hover .menu-icon::before {
    opacity: 0, 3;
    box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon i {
    color: color-mix(in srgb, var(--accent-color), #000000 10%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-description {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 30%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge {
    transform: scale(1.05);
  }

  .extended-dropdown-2 ul a:hover .menu-badge:not(.hot):not(.updates) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 75%);
  }
}

/* Extended Dropdown 2 - Mobile */
@media (max-width: 1199px) {
  .extended-dropdown-2 ul {
    background-color: var(--nav-mobile-background-color);
    border-radius: 10px;
    padding: 10px;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .extended-dropdown-2 ul a {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 16px;
    color: var(--accent-color);
    margin: 0;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 12px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 10px;
    flex-shrink: 0;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }

  .extended-dropdown-2 ul a:hover,
  .extended-dropdown-2 ul a:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title,
  .extended-dropdown-2 ul a:active .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul .active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul .active .menu-title {
    color: var(--nav-dropdown-hover-color);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.home-page-banner {
  position: absolute;
  right: -70px;
  top: 90px;
  z-index: 1
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 0 0px 0;

}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff url(../images/home-page-banner-bg.png) no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;

}


@media (max-width: 991px) {
  .hero .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }
}

.leading-digital-transformation {
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 245, 240, 1) 100%);
  border-radius: 40px;
  border: 2px solid rgba(51, 184, 252, 0.20);
  width: fit-content;
  padding: 8px 24px;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.leading-digital-transformation span {
  position: relative;
  font-size: 14px;
  color: #353535;
  padding-left: 24px;
  padding-right: 24px;
}

.leading-digital-transformation span::before {
  position: absolute;
  content: '';
  background: url(../images/banner-icon-2.png) no-repeat center center;
  width: 8px;
  height: 8px;
  top: 35%;
  left: 0px;
}

.leading-digital-transformation span::after {
  position: absolute;
  content: '';
  background: url(../images/banner-icon-1.png) no-repeat center center;
  width: 16px;
  height: 16px;
  top: 10%;
  right: 0px;
}

.hero .hero-content h1 {
  font-size: 62px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;

}

.hero .hero-content h1::after {
  position: absolute;
  content: '';
  background: url(../images/text-arrow.png) no-repeat;
  width: 176px;
  height: 167px;
  bottom: -56px;
  right: 60px;
}

.hero .hero-content h1 span {
  color: #33B8FC;
  position: relative;
  font-weight: 600;
}


@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #575757;
  margin-bottom: 35px;
}

@media (max-width: 991px) {
  .hero .hero-content p {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero .hero-content p {
    font-size: 16px;
    width: 100%;
  }
}

.hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
  }
}

.hero .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  border: 1px solid transparent;
}

.hero .btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.hero .btn-primary-1 {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);


}

.hero .btn-primary-1:hover {
  background: var(--accent-color);
  color: var(--contrast-color);

  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  border: 1px solid transparent;
}

.hero .btn-video {
  color: var(--default-color);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero .btn-video i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .btn-video:hover {
  color: var(--accent-color);
}

.hero .btn-video:hover i {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  transform: scale(1.1);
}



.hero .hero-image {
  position: relative;
  text-align: end;
  right: -180px;
  bottom: -90px;
}

@media (max-width: 991px) {
  .hero .hero-image {
    margin-top: 50px;
  }
}


@media (max-width: 768px) {
  .hero .hero-image::before {
    width: 300px;
    height: 300px;
  }
}



@media (max-width: 768px) {
  .hero .floating {
    max-width: 90%;
  }
}

.about-hero {
  padding-top: 120px;
}

.about-hero h1::after {
  display: none;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff url(../images/about-hero-bg.png) no-repeat center top;
  background-size: cover;
  z-index: 1;
}

.about-banner {
  position: relative;
  transition: all 0.4s ease-out;
}

.about-banner img {
  border-radius: 55px;
}

.about-banner {
  padding-bottom: 90px;
}

.about-banner::before {
  position: absolute;
  content: '';
  background: url(../images/about-banner-us-top.png) no-repeat;
  top: -80px;
  left: -130px;
  width: 395px;
  height: 352px;
  z-index: -1;
}

.about-banner::after {
  position: absolute;
  content: '';
  background: url(../images/about-banner-us-bottom.png) no-repeat;
  bottom: 16px;
  right: -66px;
  width: 230px;
  height: 221px;
  z-index: -1;
}

.about-page.core-business::before {
  display: none;
}

/*--------------------------------------------------------------
# Award
--------------------------------------------------------------*/
.award .award-box.mar-top {
  margin-top: -80px;
}

.award-box {
  background: var(--contrast-color);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  padding: 40px;

}

/*--------------------------------------------------------------
# Impact at Scale
--------------------------------------------------------------*/
.impact-scale {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  background: url(../images/map-bg.png) no-repeat center bottom;
  position: relative;
  overflow-y: visible;
}

.impact-scale::before {
  content: '';
  position: absolute;
  background: url(../images/impact-scale-bg.png) no-repeat;
  width: 138px;
  height: 307px;
  top: 60px;
  right: -8px;
}

.impact-scale .impact-content>p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 4rem;
  flex-grow: 1;
  color: #575757;
}

.impact-scale .impact-content .impact-number {
  font-size: 36px;
  font-weight: 700;
  color: #31AADD;
  line-height: 1;
  margin-bottom: 8px;
}

.impact-scale .impact-content .impact-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
}

.impact-scale .btn-request-call {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  margin: 10px;
  transition: all 0.5s ease-in-out;
}

.impact-scale .btn-request-call:hover {
  background-image: var(--background-gradient);
}

/*--------------------------------------------------------------
# The Core Business Section
--------------------------------------------------------------*/
.core-business {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.core-business::before {
  content: '';
  position: absolute;
  background: url(../images/core-business-top.png) no-repeat;
  top: -60px;
  left: -8px;
  width: 235px;
  height: 352px;
}

.core-business .nav.nav-tabs {
  width: fit-content;
  margin: 0 auto;
  background-color: #31AADD;
  border-radius: 48px;
  padding: 16px 16px;
  position: sticky;

}

.core-business .nav-link {
  padding: 16px 12px;
  border-radius: 48px;
}

.core-business .nav-tabs .nav-link:focus,
.core-business .nav-tabs .nav-link:hover {
  border: none;
  border-radius: 48px;
}

.core-business .nav-tabs .nav-link {
  border: none;
  color: var(--contrast-color);
  border-radius: 48px;
  font-weight: 500;
}

.core-business .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--contrast-color);
  border-radius: 36px;
  padding: 16px 12px;
  border: none;
  font-size: 14px;
  color: #101828;
  font-weight: 500;
  border-radius: 48px;
}

.core-business .tab-content {

  border-radius: 24px;
  padding: 90px 0px;
  margin-top: -45px;
  background: #F8FCFF url(../images/tab-content-bg.png) no-repeat center bottom;

}

.core-business .tab-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
  padding-left: 21px;
}

.core-business .tab-content p {
  font-size: 16px;
  line-height: 1.6;
  flex-grow: 1;
  color: #575757;
  padding-left: 21px;
  margin-bottom: 1.5rem;
}

.core-business .tab-content .btn-learn-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  margin: 10px 10px 10px 21px;
  transition: all 0.5s ease-in-out;
}

.core-business .tab-content .btn-learn-more:hover {
  background-image: var(--background-gradient);
}

.core-business .tab-content .img-radius {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.core-business .tab-pane.active {
  animation: fadeInContent 0.5s ease-in-out;
}

/*--------------------------------------------------------------
# Organisation Logo Section
--------------------------------------------------------------*/
.organisation-logo {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.organisation-logo-element {
  position: absolute;
  top: 60px;
  left: -8px;
  width: 100px;
  height: 112px;
}

.organisation-logo-bg {
  background: rgba(210, 242, 255, 1.2);
  background: linear-gradient(90deg, rgba(210, 242, 255, 0.20) 0%, rgba(251, 251, 251, 1) 100%);
  padding: 32px 0;
  scroll-margin-top: 82px;
}

.organisation-logo .organisation-logo-bg .item {
  text-align: center;
  height: 100%;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Talent Section
--------------------------------------------------------------*/
.talent {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  background: url(../images/talent-bg.png) no-repeat center center;
  overflow-y: visible;
}

.talent .talent-element {
  position: absolute;
  top: -30px;
  right: 0px;
  width: 113px;
  height: 219px;
}

.talent p {
  font-size: 16px;
  line-height: 1.8;
  color: #575757;
  margin-bottom: 2.5rem;

}

.talent p span {
  color: var(--accent-color);
}

.talent .talent-card {
  border-radius: 32px;
  padding: 50px 32px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.talent .talent-card:hover {
  transform: translateY(-8px);
}

.talent .talent-card.japanese {
  background-color: #E0EFFF;
}

.talent .talent-card.hr-academy {
  background-color: #C2F2FC;
}

.talent .talent-card h4 {
  font-size: 32px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.talent .talent-card .talent-img {
  margin-top: auto;

}

.talent .talent-card .talent-img img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
}

.talent .explore-link {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;

  transition: all 0.5s ease-in-out;
}

.talent .explore-link:hover {
  background-image: var(--background-gradient);
}


.talent .services-cards {
  /* background: var(--surface-color); */
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.talent .services-cards:hover {
  transform: translateY(-8px);
}

.talent .services-cards .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 12px;
}

.talent .services-cards .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}

.talent .services-cards:hover .image-container img {
  transform: scale(1.05);
}

.talent .services-cards .content {
  padding: 16px 0px 0px 0px;
  text-align: center;
}

.talent .services-cards h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0px;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.talent .talent-service-top {
  position: absolute;
  content: '';
  background: url(../images/digital-government-services.png);
  top: 0px;
  left: 0px;
  width: 112px;
  height: 330px;
}

.talent .talent-service-bottom {
  position: absolute;
  content: '';
  background: url(../images/digital-government-services-bottom.png);
  bottom: 0px;
  left: 0px;
  width: 380px;
  height: 492px;
  z-index: -1;
}

/*--------------------------------------------------------------
# Why Choose Section
--------------------------------------------------------------*/
.why-choose {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  background: #FCFCFC url(../images/why-choose-bg.png) no-repeat center center;
  overflow-y: visible;
}

.why-choose .why-choose-element {
  position: absolute;
  top: -166px;
  left: -45px;
  width: 235px;
  height: 352px;
}

.why-choose .why-choose-content {
  background: var(--accent-color);
  border-radius: 24px;
  min-height: 415px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.why-choose .why-choose-content::after {
  background: url(../images/why-choose-left.png) no-repeat left bottom;
  width: 269px;
  height: 340px;
  position: absolute;
  content: '';
  left: 20px;
  bottom: 0;
}

.why-choose .why-choose-content::before {
  background: url(../images/why-choose-right.png) no-repeat left bottom;
  width: 300px;
  height: 290px;
  position: absolute;
  content: '';
  right: 20px;
  bottom: 0;
}

.why-choose .why-choose-content h2 {
  color: var(--contrast-color);
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
  position: relative;
  padding-left: 16px;
}

.why-choose .why-choose-content h2::after {
  position: absolute;
  content: '';
  background: url(../images/text-arrow-icon.png) no-repeat;
  width: 23px;
  height: 24px;
  left: 0px;
  top: 10px;
}

.why-choose .why-choose-content h2 span {
  font-size: 64px;
  font-weight: 600;
}

.why-choose .why-choose-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0px;
  color: var(--contrast-color);
}

.why-choose .why-choose-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  border-radius: 24px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;

}

.why-choose .why-choose-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.why-choose .why-choose-card .icon-wrapper {
  width: 83px;
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}

.why-choose .why-choose-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-choose .why-choose-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #575757;
  margin-bottom: 0px;
  flex-grow: 1;
}

.why-choose .custom-software-card {
  background: #F2F9FF;
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
  border: 1px solid #CEF8FF;
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-choose .custom-software-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-choose .custom-software-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  margin-top: 8px;
  color: var(--accent-color);
}

.why-choose .custom-software-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0px;
  color: #575757;
}

.why-choose.custom-softwar {
  overflow: hidden;
}

.why-choose.custom-software .custom-software-left-bottom {
  position: absolute;
  content: '';
  background: url(../images/about-banner-us-bottom.png) no-repeat;
  width: 230px;
  height: 221px;
  left: 0px;
  bottom: 0px;

}

.why-choose.custom-software .custom-software-top-right {
  position: absolute;
  content: '';
  background: url(../images/about-banner-us-bottom.png) no-repeat;
  right: 0px;
  top: 180px;
  width: 230px;
  height: 221px;
}

.public-impact-element {
  position: absolute;
  right: 0px;
  top: 30px;
}

.public-impact-box {
  border-radius: 32px;
  transition: all 0.4s ease-out;
  overflow: hidden;
  padding: 0px 32px;
  height: 309px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertical */

}

.public-impact-box:hover {
  transform: translateY(-8px);
}

.public-impact-box.box-1 {
  background: #110E12 url(../images/public-impact-box-1.png) no-repeat center right;


}

.public-impact-box.box-2 {
  background: #110E12 url(../images/public-impact-box-2.png) no-repeat center right;
}

.public-impact-box.box-3 {
  background: #110E12 url(../images/public-impact-box-3.png) no-repeat center right;
}

.public-impact-box h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--contrast-color);
}

.public-impact-box p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0px;
  color: var(--contrast-color);
  width: 55%;
}

/*--------------------------------------------------------------
# Our Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  padding: 80px 0;
  scroll-margin-top: 92px;
  position: relative;

  background-image: url("../images/success-stories-bg.png");
  background-repeat: no-repeat;
  background-position: right -150px bottom -250px;
  background-color: #FFFAFA;

  overflow-x: clip;
  overflow-y: visible;
}

.success-stories .success-stories-elements {
  position: absolute;
  bottom: -240px;
  right: -60px;
  width: 187px;
  height: 299px;
}

.success-stories::before {
  position: absolute;
  content: '';
  background: url(../images/success-stories-bottom.png) no-repeat;
  left: -90px;
  bottom: 0px;
  width: 398px;
  height: 457px;
}

.success-stories p {
  font-size: 16px;
  line-height: 1.8;
  color: #575757;
  margin-bottom: 2rem;
}

.success-stories .owl-item.active.center {
  background-color: var(--contrast-color);
  border: 1px solid var(--accent-color);
  border-radius: 24px;

}

.success-stories .owl-item.active.center h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;
}

.success-stories .owl-item.active.center p {
  font-size: 16px;
  line-height: 1.6;
  color: #575757;
  margin-bottom: 0px;
  flex-grow: 1;
  text-align: center;
}

/* Hide content by default */
.success-stories .item h4,
.success-stories .item p {
  display: none;
}

/* Show only logo for inactive */
.success-stories .item {
  padding: 24px;
  transform: scale(0.85);
  transition: all 0.4s ease;

}

/* Active (center) slide */
.success-stories .owl-item.active.center .item {
  opacity: 1;
  transform: scale(1);
}

/* Show full content only for active slide */
.success-stories .owl-item.active.center .item h4,
.success-stories .owl-item.active.center .item p {
  display: block;
}

.success-stories .owl-item.active.center .item .logo {
  background-color: transparent;
  box-shadow: none;
  width: 104px;
  height: 104px;
  border-radius: 50%;
}

.success-stories .owl-carousel .item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 580px;
}

.success-stories .logo {
  width: 155px;
  height: 135px;
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.success-stories .logo img {
  width: 104px;
  height: 104px;
}

.success-stories .owl-carousel .owl-nav button.owl-next,
.success-stories .owl-carousel .owl-nav button.owl-prev,
.success-stories .owl-carousel button.owl-dot {

  color: inherit;
  background-color: #FFF;
  border: none;
  padding: 0 !important;
  font-size: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.success-stories .owl-theme .owl-nav [class*=owl-]:hover {
  background: #004899;
  color: #FFF;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Case Studies Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  background: url(../images/tabs-bg.png) no-repeat center -10px;
  position: relative;
  overflow-y: visible;
}

.tabs .tabs-element {
  position: absolute;
  content: '';
  width: 176px;
  height: 325px;
  right: -32px;
  top: -80px;
}


.tabs .tabs-header {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .tabs .tabs-header {
    margin-bottom: 60px;
  }
}

.tabs .tabs-header .nav-tabs {
  border: none;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs {
    flex-direction: column;
    gap: 24px;
  }
}

.tabs .tabs-header .nav-tabs .nav-item {
  flex: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-item {
    flex: none;
    width: 100%;
  }
}

.tabs .tabs-header .nav-tabs .nav-link {
  border: none;
  background: var(--contrast-color);
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 94%);
}

.tabs .tabs-header .nav-tabs .nav-link.active {
  background-image: var(--background-gradient);
  color: var(--contrast-color);
}

.tabs .tabs-header .nav-tabs .nav-link.active p {
  color: var(--contrast-color) !important;
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h6,
.tabs .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text small {
  color: var(--contrast-color);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) {
  background: var(--contrast-color);
}

.tabs .tabs-header .nav-tabs .nav-link:hover:not(.active) .tab-content-preview .tab-number {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 30px 24px;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview {
    padding: 16px 20px;
    gap: 24px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
  width: 100px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {
    width: 100px;
    height: 100px;
    font-size: 16px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
  text-align: left;
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {
    flex: 1;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
  margin: 0 0 2px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
}

@media (max-width: 768px) {
  .tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {
    font-size: 13px;
  }
}

.tabs .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.3s ease;
  display: block;
  line-height: 1;
}

.tabs .tab-content .tab-pane {
  animation: fadeInContent 0.5s ease-in-out;
}

.tabs .tab-content .content-area {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .tabs .tab-content .content-area {
    padding-right: 0;
    margin-bottom: 0px;
  }
}

.tabs .tab-content .content-area .content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
}

.tabs .tab-content .content-area .content-badge i {
  font-size: 14px;
}

.tabs .tab-content .content-area h3 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area h3 {
    font-size: 28px;
    margin-top: 32px;
  }
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area h3 {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area p {
  font-size: 16px;
  line-height: 1.7;
  color: #575757;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area p {
    font-size: 15px;
  }
}

.tabs .tab-content .content-area .highlight-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .tabs .tab-content .content-area .highlight-stats {
    gap: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
  display: block;
  font-size: 28px;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .tabs .tab-content .content-area .highlight-stats .stat-item .stat-value {
    font-size: 24px;
  }
}

.tabs .tab-content .content-area .highlight-stats .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabs .tab-content .content-area .feature-points {
  margin-bottom: 40px;
}

.tabs .tab-content .content-area .feature-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.tabs .tab-content .content-area .feature-points .point-item:last-child {
  margin-bottom: 0;
}

.tabs .tab-content .content-area .feature-points .point-item i {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 4px;
  flex-shrink: 0;
}

.tabs .tab-content .content-area .feature-points .point-item span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
}

.tabs .tab-content .content-area .explore-link {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;

  transition: all 0.5s ease-in-out;
}

.tabs .tab-content .content-area .explore-link:hover {
  background-image: var(--background-gradient);
}


.tabs .tab-content .content-area .explore-link:hover i {
  transform: translate(2px, -2px);
}

.tabs .tab-content .content-area .explore-link i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.tabs .tab-content .visual-content {
  position: relative;
}

@media (max-width: 992px) {
  .tabs .tab-content .visual-content {
    padding-left: 0;
  }
}

.tabs .tab-content .visual-content img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.tabs .tab-content .visual-content .floating-element {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element {
    bottom: 15px;
    right: 15px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card {
  background: var(--surface-color);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  animation: floatAnimation 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card {
    padding: 12px 16px;
    gap: 10px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card i {
  font-size: 20px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card i {
    font-size: 18px;
  }
}

.tabs .tab-content .visual-content .floating-element .floating-card .card-info span {
  display: block;
  font-size: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.tabs .tab-content .visual-content .floating-element .floating-card .card-info strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .tabs .tab-content .visual-content .floating-element .floating-card .card-info strong {
    font-size: 12px;
  }
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatAnimation {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  color: var(--default-color);
  background-image: var(--background-gradient);
  padding: 80px 0 120px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow: hidden;
  min-height: 590px;
}

.cta-section h2 {
  display: inline-block;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--surface-color);
}

.cta-section p {
  color: var(--surface-color);
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.cta-section .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  margin-bottom: 12px;
}

.cta-section .cta-banner {
  position: absolute;
  bottom: -10px;
  right: 20px;

}

.cta-section .cta-content {
  min-height: 380px;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
footer {
  color: var(--default-color);
  background: url(../images/footer-bg.png) no-repeat center right;
  font-size: 14px;
  position: relative;
}

footer .footer-top {
  padding-top: 80px;
  /* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
}

footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: var(--default-color);
}

footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color));
  margin-right: 10px;
  transition: 0.3s;
}

footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

footer .footer-links {
  margin-bottom: 30px;
}

footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 0;
}

footer .footer-links ul li:first-child {
  padding-top: 0;
}

footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color));
  display: inline-block;
  line-height: 1;
}

footer .footer-links ul a:hover {
  color: var(--accent-color);
}

footer .footer-contact p {
  margin-bottom: 5px;
}

footer .copyright {
  padding: 25px 0;
  /* border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
}

footer .copyright p {
  margin-bottom: 0;
  color: var(--default-color);
  font-size: 14px;
}

footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# CSR Page Section
--------------------------------------------------------------*/
.csr-page-section .about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff url(../images/csr-bg.png) no-repeat center top;
  background-size: cover;
  z-index: 1;
}

.csr-page-section .our-foundation {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.csr-page-section .our-foundation .impact-number {
  font-size: 36px;
  font-weight: 700;
  color: #31AADD;
  line-height: 1;
  margin-bottom: 8px;
}

.csr-page-section .our-foundation .impact-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
}

.csr-page-section .our-foundation .impact-content>p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  color: #575757;
}

.csr-page-section .owlcarousel-bg {
  background: url(../images/owlcarousel-bg.png) no-repeat center center;
  padding-bottom: 80px;
}

.csr-page-section .item {
  transition: all 0.4s ease-out;
  overflow: hidden;
  margin-top: 40px;
}

.csr-page-section .item:hover {
  transform: translateY(-8px);
}

.csr-page-section .item:hover .image-container img {
  transform: scale(1.05);
}

.csr-page-section .item .image-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  margin-bottom: 20px;
}

.csr-page-section .item .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}


.csr-page-section .about-hero {
  padding: 120px 0px 60px 0px;

  position: relative;
  overflow: visible;
}

.csr-page-section .about-hero-element {
  position: absolute;
  content: '';
  left: 0px;
  bottom: -106px;
  background: url(../images/csr-banner-element.png) no-repeat;
  width: 283px;
  height: 272px;
  z-index: 1;
}

.csr-page-section .about-hero-element-1 {
  position: absolute;
  content: '';
  right: 0px;
  bottom: -63px;
  background: url(../images/csr-banner-element-1.png) no-repeat;
  z-index: 1;
  width: 544px;
  height: 737px;
}

.csr-page-section .hero .btn-primary-1 {
  background: #FFFFFF;
  border: none;
}

.csr-page-section .hero .btn-primary-1:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Connect Section
--------------------------------------------------------------*/
.connect-with-us {
  color: var(--default-color);
  background-image: var(--background-gradient);
  padding: 80px 0 172px;
  scroll-margin-top: 92px;
  position: relative;
  overflow: hidden;
}

.connect-with-us::after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  background: url(../images/connect-with-us-bg.png) no-repeat;
  top: 0px;
  right: 0px;
  width: 235px;
  height: 264px;
}

.connect-with-us h2 {
  display: inline-block;
  font-size: 62px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--surface-color);
}

.connect-with-us p {
  color: var(--surface-color);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 4rem;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.connect-with-us .btn-primary {
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.connect-with-us .btn-primary {
  background-color: var(--contrast-color);
  color: var(--accent-color);
  margin-bottom: 12px;
}

/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/

.contact-us .hero-content {
  position: relative;
}

.contact-us .about-hero::after {
  position: absolute;
  content: '';
  background: url(../images/contact-us.png) no-repeat;
  top: 70px;
  left: 0px;
  width: 210px;
  height: 334px;
  z-index: 1;
}

.contact-us .connect-with-us {
  overflow-y: visible;
}

.contact-us .about-hero {
  padding-bottom: 138px;
}

.contact-us .hero-content p {
  margin-bottom: 4rem;
}

.contact-us .contact-card {
  transition: all 0.4s ease-out;
  overflow: hidden;
  border-radius: 24px;
  padding: 32px;
  min-height: 188px;
  border: 2px solid var(--contrast-color);
  margin-bottom: 1.5rem;
}

.contact-us .contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.contact-us .contact-card.box-1 {
  background: var(--accent-color);
}

.contact-us .contact-card.box-1 h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  color: var(--contrast-color);
}

.contact-us .contact-card.box-1 h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  color: var(--contrast-color);
}

.contact-us .contact-card.box-1 p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--contrast-color);
  margin-bottom: 0px;
}

.contact-us .contact-card.box-2 {
  background-color: #C2F2FC;
}

.contact-us .contact-card.box-2 h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
  color: var(--default-color);
}

.contact-us .contact-card.box-2 p {
  font-size: 16px;
  line-height: 1.6;
  color: #575757;
  margin-bottom: 0px;
}

.contact-us .contact-card .bottom {
  margin-top: auto;
  display: block;
}

.contact-us .contact-card.wh {
  position: relative;
  height: 48%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-us .contact-us-form {
  margin-top: -430px;
  position: relative;
  padding-bottom: 20px;

}

.contact-us .contact-us-form .form-box {
  background: var(--contrast-color);
  border-radius: 20px;
  padding: 55px 50px;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.contact-us .contact-us-form .form-box .form-group {
  margin-bottom: 20px;
}

.contact-us .contact-us-form .form-box .form-group label {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-us .contact-us-form .form-box .form-group input {
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid rgba(10, 21, 25, 0.12);

}

.contact-us .contact-us-form .form-box .form-group textarea {
  resize: none;
}

.contact-us .contact-us-form .form-box .btn-primary {
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  border: none;
}

.contact-us .contact-us-form .form-box .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-bottom: 0px;
}

.contact-us .contact-us-form .form-box .btn-primary:hover {
  background-image: var(--background-gradient);
}

.contact-us .connect-with-us::after {
  display: none;
}

.contact-us .contact-us-form .form-box .form-group input:focus,
.contact-us .contact-us-form .form-box .form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.contact-us .contact-us-form::before {
  position: absolute;
  content: '';
  background: url(../images/connect-with-us-bg-bottom.png) no-repeat;
  top: 150px;
  left: 0px;
  width: 174px;
  height: 268px;
}

.contact-us .connect-with-us {
  padding-bottom: 300px;

}


/*--------------------------------------------------------------
# Cloud Solutions Section
--------------------------------------------------------------*/
.cloud-solutions-banner {
  border-radius: 55px;
  border: 6px solid #fff;
  margin-top: 3rem;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.cloud-solutions .about-hero,
.data-engineering .about-hero {
  padding-bottom: 60px;
}

.cloud-solutions .about-hero::before,
.data-engineering .about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff url(../images/cloud-solutions-bg.png) no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.cloud-solutions .high-performance {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.cloud-solutions .high-performance .heading-text {
  width: 75%;
  margin: 0 auto;
}

.cloud-solutions .high-performance .high-performance-box {
  background-color: #F8FCFF;
  border-radius: 40px;
  padding: 48px 32px;
  margin-top: 2.5rem;
  position: relative;
}

.cloud-solutions .high-performance .high-performance-box::before {
  position: absolute;
  content: '';
  background: url(../images/about-banner-us-bottom.png) no-repeat;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 221px;
  z-index: -1;
}

.cloud-solutions .high-performance .high-performance-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #575757;
  margin-bottom: 2.5rem;
}

.cloud-solutions .high-performance .high-performance-box img {
  border-radius: 35px;
}

.cloud-solutions .high-performance .high-performance-box .btn-learn-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
}

.cloud-solutions .high-performance .high-performance-box .btn-learn-more:hover {
  background-image: var(--background-gradient);
}

.cloud-solutions .talent {
  background-color: #F8FCFF;
}

.cloud-solutions .talent .talent-element {
  position: absolute;
  top: -120px;
  right: 0px;
  width: 153px;
  height: 241px;
}

.cloud-solutions .explore-our-solutions {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.cloud-solutions .explore-our-solutions .explore-our-solutions-top-right {
  position: absolute;
  content: '';
  background: url(../images/about-banner-us-bottom.png) no-repeat;
  right: 0px;
  top: 80px;
  width: 230px;
  height: 221px;
}

.cloud-solutions .explore-our-solutions .explore-our-solutions-left-bottom {
  position: absolute;
  content: '';
  background: url(../images/about-banner-us-bottom.png) no-repeat;
  width: 230px;
  height: 221px;
  left: 0px;
  bottom: 230px;
  z-index: -1;
}

.cloud-solutions .explore-our-solutions .explore-our-solutions-card {
  background: #F2F9FF;
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
  border: 1px solid #CEF8FF;
  border-radius: 12px;
  padding: 16px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cloud-solutions .explore-our-solutions .explore-our-solutions-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.cloud-solutions .explore-our-solutions .explore-our-solutions-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
  line-height: 1.3;
  color: var(--default-color);
}

.cloud-solutions .explore-our-solutions .explore-our-solutions-card .icon-wrapper {
  width: 63px;
  height: 63px;
  background-color: #E1F1FF;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  flex-shrink: 0;
  /* critical for perfect circle */
  box-sizing: border-box;
}

.cloud-solutions .why-choose .why-choose-content,
.data-engineering .why-choose .why-choose-content {
  min-height: 328px;
  margin-bottom: 0;
  height: 100%;
}

.cloud-solutions .why-choose .why-choose-content::after,
.data-engineering .why-choose .why-choose-content::after {
  bottom: -40px;
}

.cloud-solutions .why-choose .why-choose-content h2 {
  color: var(--contrast-color);
  font-size: 32px;
}

.cloud-solutions .why-choose .why-choose-content h2 span {
  font-size: 48px;
  font-weight: 600;
}

.cloud-solutions .why-choose .mar-left,
.data-engineering .why-choose .mar-left {
  margin-left: 250px;
}

.cloud-solutions .why-choose .custom-software-card {
  background: #fff;
}

.cloud-solutions .why-choose .custom-software-card .image-container {
  margin-bottom: 2.5rem;
}

.cloud-solutions .platform-expertise {
  background-color: #BDECFF;
  border-radius: 12px;
  padding: 40px 120px;
  margin-top: 80px;
}

.cloud-solutions .platform-expertise h3 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 0px;
  line-height: 1.3;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# HR Cloud Section
--------------------------------------------------------------*/
.hr-cloud .talent .talent-element {
  position: absolute;
  top: 170px;
  left: -40px;
  width: 306px;
  height: 268px;
}

.hr-cloud .why-choose {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  background: #F8FCFF;
  overflow-y: visible;
}

.hr-cloud .why-choose .custom-software-card h3 {
  color: var(--heading-color);
}

.hr-cloud .explore-features {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.hr-cloud .explore-features .explore-features-card {
  border-radius: 24px;
  padding: 50px 32px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-out;
  overflow: hidden;
  background-color: #F8FCFF;

}

.hr-cloud .explore-features .explore-features-card:hover {
  transform: translateY(-8px);
}




.hr-cloud .explore-features .element-top {
  position: absolute;
  content: '';
  right: 24px;
  top: 16px;
}

.hr-cloud .explore-features .element-bottom {
  position: absolute;
  content: '';
  left: 0;
  bottom: -60px;
  z-index: -1;
}

.hr-cloud .explore-features .explore-features-card h4 {
  font-size: 32px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.hr-cloud .explore-features .explore-features-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #575757;
  margin-bottom: 0rem;
}

.hr-cloud .explore-features .explore-features-card p span {
  color: var(--accent-color);
}

.hr-cloud .explore-features .explore-features-card .explore-features-img {
  margin-top: auto;

}

.hr-cloud .explore-features .explore-features-card .explore-features-img img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
}

.hr-cloud .impact-scale::before {
  display: none;
}

.hr-cloud .impact-scale .impact-content {
  background-color: rgba(255, 255, 255, 0.40);
  border: 1px solid rgba(202, 237, 255);
  border-radius: 24px;
  padding: 32px 48px;
  transition: all 0.3s ease;
}

.hr-cloud .impact-scale .impact-content:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hr-cloud .tankhapay-solution {
  padding: 80px 0;
  scroll-margin-top: 92px;
  position: relative;
  overflow-y: visible;
  background: url(../images/tankhapay-solution-bg.png) no-repeat center center;
}

.hr-cloud .tankhapay-solution .tankhapay-solution-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 16px;

}

.hr-cloud .tankhapay-solution .tankhapay-solution-card h3::before {
  position: absolute;
  content: '';
  border-left: 1px solid #33B8FC;
  height: 34px;
  width: 1px;
  left: 0;
}

.hr-cloud .tankhapay-solution .tankhapay-solution-card p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 0px;
  color: #575757;
}

.hr-cloud .hero .hero-content p {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.hr-cloud .tankhapay-solution .image-container {
  position: relative;

}

.hr-cloud .tankhapay-solution .image-container::after {
  position: absolute;
  content: '';
  width: 207px;
  height: 199px;
  left: -80px;
  bottom: -80px;
  background: url(../images/explore-features-top.png) no-repeat;
  z-index: -1;
}

.hr-cloud .about-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

.hr-cloud .banner-section {
  background: url(../images/hr-cloud-banner.png) no-repeat bottom right;


}

.hr-cloud .about-hero .top-element {
  position: absolute;
  content: '';
  left: -80px;
  top: 120px;
  z-index: 1;
}

.hr-cloud .about-hero .bottom-element {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 0px;
  z-index: 1;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .about-hero {
  overflow: visible;
}

.about-us .about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.4) 100%),
    url("../images/about-us-banner-1.png");

  background-repeat: no-repeat, no-repeat;
  background-position: center, right 250px;
  background-size: cover, contain;

  pointer-events: none;
}



.about-us .about-hero .hero-content h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

.about-us .about-hero .hero-content .about-banner-img {
  position: relative;
}

.about-us .about-hero .hero-content .about-banner-img::before {
  position: absolute;
  content: '';
  width: 341px;
  height: 404px;
  top: -160px;
  left: -200px;
  background: url(../images/about-banner-img-top-element.png) no-repeat;
  z-index: -1;
}

.about-us .about-hero .hero-content .about-banner-img::after {
  position: absolute;
  content: '';
  width: 263px;
  height: 250px;
  bottom: -130px;
  right: -170px;
  z-index: -1;
  background: url(../images/about-banner-img-bottom-element.png) no-repeat;

}

.about-us .about-hero .hero-content .about-banner-img img {
  border-radius: 20px;
  border: 7px solid var(--contrast-color);
}

.about-us .technology-humanity {
  padding: 200px 0 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.about-us .technology-humanity .card {
  position: relative;
  border-radius: 20px;
  border: none;
  min-height: 300px;
  padding-top: 1.5rem;
  overflow-y: visible;
  background-image: url("../images/technology-humanity-bg.png"),
    linear-gradient(76deg, rgba(189, 240, 255, 1) 0%, rgba(247, 253, 255, 1) 100%);
  background-repeat: no-repeat;
  background-position: right bottom;
}

.about-us .technology-humanity .card h4 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--default-color);
}

.about-us .technology-humanity .card p {
  padding-right: 3%;
}

.about-us .technology-humanity .card p:last-child {
  margin-bottom: 3.5rem;
}

.about-us .technology-humanity .card .founder-img {
  position: absolute;
  bottom: 0px;
}

.about-us .founder-desk {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
  background: url(../images/founder-desk-bg.png) no-repeat;
  background-size: cover;
}

.about-us .founder-desk .card {
  border: 1px solid #BDECFF;
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: var(--contrast-color) url(../images/founder-bg.png) no-repeat center right;
  overflow: hidden;
}

.about-us .founder-desk .card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
  color: var(--accent-color);
  padding-right: 10%;
}

.about-us .founder-desk .card p {
  margin-bottom: 8px;
}

.about-us .founder-desk .card p strong {
  margin-bottom: 0px;
  color: var(--default-color);
}

.about-us .founder-desk .card {
  position: relative;
}

.about-us .founder-desk .card .founder-img {
  position: absolute;
  bottom: 0px;
  transform: translateY(24px);
}

.about-us .awards-recognition {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.about-us .awards-recognition::after {
  position: absolute;
  content: '';
  bottom: -70px;
  right: -80px;
  background: url(../images/explore-features-top.png) no-repeat;
  width: 207px;
  height: 199px;
  z-index: -1;
}

.about-us .awards-recognition::before {
  position: absolute;
  content: '';
  left: -180px;
  top: 80px;
  transform: rotate(-180deg);
  background: url(../images/expert-payroll-services-element-top.png) no-repeat;
  width: 306px;
  height: 268px;
  opacity: 0.6;
}

.about-us .awards-recognition .card {
  background-color: var(--contrast-color);
  border: 1px solid #BDECFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-us .awards-recognition .card .awards-recognition-owl-carousel h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--accent-color);
}

.about-us .awards-recognition .card .awards-recognition-owl-carousel .image-container {
  margin-bottom: 32px;
}

.about-us .awards-recognition .card .awards-recognition-owl-carousel .image-container img {
  border-radius: 20px;
}

.about-us .awards-recognition .card .awards-recognition-owl-carousel .text-container p {
  margin-bottom: 0px;
}

.about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-next,
.about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-prev {

  color: inherit;
  background-color: #FFF;
  border: none;
  padding: 0 !important;
  font-size: 24px;
  width: 56px;
  height: 56px;
  position: absolute;
  border-radius: 50%;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-next {
  right: -15%;
  top: 45%;
}

.about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-prev {
  left: -15%;
  top: 45%;
}

.about-us .awards-recognition .card .owl-theme .owl-nav [class*=owl-]:hover {
  background: #004899;
  color: #FFF;
  text-decoration: none;
}

.about-us .akal-work-culture {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
  z-index: 0;
  /* important */
}

.about-us .akal-work-culture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 705px;
  height: 1049px;
  background: url(../images/akal-work-culture-before.png) no-repeat center left;
  background-size: contain;
  z-index: -1;
}

.about-us .akal-work-culture::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 625px;
  height: 1049px;
  background: url(../images/akal-work-culture-after.png) no-repeat center right;
  background-size: contain;
  z-index: -1;
}

.about-us .akal-work-culture .akal-work-culture-owl-carousel .item img {
  border-radius: 20px;
}

.about-us .akal-work-culture .akal-work-culture-owl-carousel .mt-slide {
  margin-top: 30px;
}

.about-us .akal-work-culture .akal-quote-card {
  background: var(--contrast-color);
  border: 1px solid #FFDED1;
  border-radius: 20px;
  padding: 20px 20px 20px 40px;
  margin: 80px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-us .akal-work-culture .akal-quote-card .bor-20 {
  border-radius: 20px;
}

.about-us .akal-work-culture .akal-quote-card p {
  margin-bottom: 0px;
  color: #575757;
}

.about-us .our-mission {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  background: url(../images/our-mission-bg.png) no-repeat bottom right;
}

.about-us .our-mission::before {
  position: absolute;
  content: '';
  background: url(../images/tabs-bg-element.png) no-repeat top right;
  z-index: 1;
  width: 176px;
  height: 325px;
  top: 0px;
  right: 0px;
}

.about-us .our-mission .our-mission-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-us .our-mission .our-mission-card .icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us .our-mission .our-mission-card .our-mission-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
  position: relative;
  display: flex;
  align-items: center;
}

/* Section */
.about-us .our-values {
  padding: 80px 0;
  scroll-margin-top: 92px;
  position: relative;
  overflow: visible;
}

/* Owl equal height fix */
.about-us .our-values-owlcarousel .owl-stage {
  display: flex;
}

.about-us .our-values-owlcarousel .owl-item {
  display: flex;
  height: auto;
}

/* Card */
.about-us .our-values .our-values-card {
  padding: 32px;
  border-radius: 20px;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* Inner content stretch */
.about-us .our-values-card>div {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Dark card */
.our-values-card.is-dark {
  background-color: #004899;
}

.our-values-card.is-dark h2 {
  color: rgba(255, 255, 255, 0.8);
}

.our-values-card.is-dark h3,
.our-values-card.is-dark p {
  color: var(--contrast-color);
}

/* Light card */
.our-values-card.is-light {
  background-color: #C2F2FC;
}

.our-values-card.is-light h2 {
  color: #31AADD;
}

/* .about-us .our-values .our-values-card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
} */

.about-us .our-values .our-values-card h2 {
  font-family: "Lobster", sans-serif;
  font-size: 250px;
  line-height: 230px;
}

.about-us .our-values .our-values-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  position: relative;
  display: flex;
  align-items: center;
}

.about-us .connect-with-us h2 {
  margin-bottom: 2.5rem;
}

.about-us .our-values .our-values-card p {
  margin-bottom: 0px;
}

.about-us .csr-commitment-driving {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.about-us .csr-commitment-driving h3 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.3;
  color: var(--accent-color);
  position: relative;
  display: flex;
  align-items: center;
}

.about-us .csr-commitment-driving h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
  position: relative;
  display: flex;
  align-items: center;
}

.about-us .csr-commitment-driving p {
  margin-bottom: 1.5rem;
}

.about-us .btn-primary-1 {
  background: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
}

.about-us .btn-primary-1:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
  border: 1px solid transparent;
}

.about-us .csr-commitment-driving-card-img-bg {
  background: url(../images/csr-commitment-driving-card-img-bg.png) no-repeat center center;
}

.bor-radius-20 {
  border-radius: 20px;
}

.box-shadow-css {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* ===============================
   TIMELINE WRAPPER
================================ */
.timeline-wrapper {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* dashed timeline line */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 62px;
  /* aligns with dot center */
  left: 0;
  width: 100%;
  border-top: 2px dashed #1F8CBA;
  z-index: 1;
}

/* ===============================
   TIMELINE ITEM
================================ */
.timeline-item {
  position: relative;
  text-align: center;
  padding: 80px 0px;
  /* space for top & line */
}

/* ===============================
   TIMELINE TOP (YEAR + DOT)
================================ */
.timeline-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-top h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 6px;
}

/* dot */
.timeline-top .dot {
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 3px solid #1F8CBA;
  border-radius: 50%;
  display: inline-block;
}

/* ===============================
   TIMELINE CARD
================================ */
.timeline-card {
  padding: 22px 20px 0px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 1.8;

  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-out;
  overflow: hidden;
}

.timeline-img {
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  display: inline-block;

}

.timeline-img img {
  display: block;
}

.owl-item:nth-child(2n + 1) .timeline-card {
  background-color: #eaf7ff;
  /* ODD items */
  color: #575757;
}

.owl-item:nth-child(2n + 2) .timeline-card {
  background-color: #004899;
  /* EVEN items */
  color: #fff;
}

/* ===============================
   OWL CAROUSEL FIXES
================================ */
.timeline-carousel .owl-stage {
  padding-top: 20px;
}

.timeline-carousel .owl-item {
  padding: 0 10px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .timeline-wrapper {
    padding: 0px 0 40px;
  }

  .timeline-item {
    padding-top: 110px;
  }

  .timeline-top h3 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .timeline-wrapper::before {
    top: 59px;
  }

  .timeline-item {
    padding-top: 100px;
  }

  .timeline-card {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Detailed Case Studies Section
--------------------------------------------------------------*/
.case-studies .detailed-case-studies {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.case-studies .about-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.case-studies .detailed-case-studies h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 0px;
  line-height: 1.3;
}

.case-studies .detailed-case-studies-card:nth-child(odd) .detailed-case-studies-box {
  background-color: #C2F2FC;
}

.case-studies .detailed-case-studies-card:nth-child(even) .detailed-case-studies-box {
  background-color: #CFE6FF;

}

.case-studies .detailed-case-studies-card .detailed-case-studies-box {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-out;
  overflow: hidden;
  border-radius: 20px;
}

.case-studies .detailed-case-studies-card .detailed-case-studies-box:hover {
  transform: translateY(-8px);
}

.case-studies .detailed-case-studies-box .detailed-case-studies-heading {
  padding: 32px;
}

.case-studies .detailed-case-studies-box .detailed-case-studies-heading h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.case-studies .detailed-case-studies-box .detailed-case-studies-heading p {
  margin-bottom: 0px;
  color: var(--default-color);
  line-height: 1.4;
}

.case-studies .detailed-case-studies-box .detailed-case-studies-heading .detailed-case-studies-image-container {
  margin-top: auto;
}

.case-studies .detailed-case-studies-box .detailed-case-studies-heading .detailed-case-studies-image-container img {
  display: block;
}

.case-studies .about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff url(../images/case-studies-banner-bg.png) no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}

.case-studies .case-studies-top-element {
  position: absolute;
  content: '';
  left: -80px;
  top: 60px;
  z-index: 1;
}

.case-studies .case-studies-top-element img {
  width: 90%;
}

.case-studies .case-studies-bottom-element {
  position: absolute;
  content: '';
  right: -32px;
  bottom: -180px;
  z-index: 1;
}

.case-studies .case-studies-bottom-element img {
  width: 80%;
}

.case-studies .detailed-case-studies-box .btn-request-call {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  margin: 10px;
  transition: all 0.5s ease-in-out;
  margin: 1.2rem 0px 0px 0px;
}

.case-studies .detailed-case-studies-box .btn-request-call:hover {
  background-image: var(--background-gradient);
}

.case-studies .case-studies-owlcarousel-box {
  border-radius: 20px;
  border: 1px solid #FF6B35;
  padding: 32px 20px;
  background-color: var(--contrast-color);

}

.case-studies .case-studies-owlcarousel-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--default-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.case-studies .case-studies-owlcarousel .owl-item.active.center .case-studies-owlcarousel-box {
  margin-top: 80px;
  border-color: #6EE8FC;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 80px;
}

.case-studies .owl-carousel .owl-item img {
  display: inline-flex;
  width: auto;
}

/*--------------------------------------------------------------
# Talent Bridge Section
--------------------------------------------------------------*/
.talent-bridge .transforming-talent {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.talent-bridge .about-hero .about-banner-img img {
  border-radius: 54px;
  border: 7px solid var(--contrast-color);
}

.talent-bridge .about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../images/talent-bridge-banner-bg.png") no-repeat center top;
  pointer-events: none;
}

.talent-bridge .about-banner-img::before {
  position: absolute;
  content: '';
  width: 263px;
  height: 250px;
  top: 260px;
  left: 0px;
  background: url(../images/about-banner-img-bottom-element.png) no-repeat;
  z-index: -1;
}

.talent-bridge .about-hero {
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.talent-bridge .about-hero .about-banner-img::after {
  position: absolute;
  content: '';
  width: 268px;
  height: 209px;
  bottom: -80px;
  right: -32px;
  z-index: -1;
  background: url(../images/explore-features-bottom.png) no-repeat;

}

.talent-bridge .challenge {
  padding: 80px 0 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.talent-bridge .challenge::before {
  position: absolute;
  content: '';
  left: -160px;
  bottom: -240px;
  background: url(../images/expert-payroll-services-element-top.png) no-repeat;
  width: 306px;
  height: 268px;
  z-index: -1;
  opacity: 0.6;
}

.talent-bridge .challenge::after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0;
  background: url(../images/challenge-bg.png) no-repeat top right;
  width: 498px;
  height: 699px;
  z-index: -1;
}

.talent-bridge .challenge .challenge-box-card {
  background-color: #EAF6FF;
  border-radius: 40px;
  padding: 50px;

}

.talent-bridge .challenge .challenge-box-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
}

.talent-bridge .challenge .challenge-box-card li span {
  color: var(--accent-color);
  font-weight: 600;
}

.talent-bridge .challenge .challenge-box-card p:last-child {
  margin-bottom: 0;
}

.talent-bridge .challenge .challenge-box-card img {
  border-radius: 20px;
}

.talent-bridge .transforming-talent .akal-japanese-academy-box {
  border-radius: 20px;
  border: 1px solid #25BFEC;
  padding: 50px 0px 0px 50px;
  /* Main background */
  background: linear-gradient(165deg, #ffffff 50%, #eaf9fe 80%, #d4f2fb 100%);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;

}

.talent-bridge .transforming-talent .akal-japanese-academy-box:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.talent-bridge .transforming-talent .akal-japanese-academy-box::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 294px;
  height: 197px;
  background: url("../images/hexagon-pattern.png") no-repeat;
  /* optional */

}

.talent-bridge .transforming-talent .akal-japanese-academy-box h2 {
  font-size: 32px;
  font-weight: 600;
  color: #25BFEC;
}

.talent-bridge .transforming-talent .akal-japanese-academy-box h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
}

.talent-bridge .transforming-talent .akal-japanese-academy-box .jp-watermark {
  position: absolute;
  bottom: -12px;
  right: 0px;
  font-size: 130px;
  font-weight: 700;
  color: #25BFEC;
  line-height: 1;
  pointer-events: none;
  opacity: 0.8;
}

.talent-bridge .transforming-talent .akal-japanese-academy-box .btn-primary {
  background: transparent;
  color: #25BFEC;
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  border: 1px solid #25BFEC;
  width: fit-content;
}

.talent-bridge .transforming-talent .akal-japanese-academy-box .btn-primary:hover {
  background: #25BFEC;
  color: var(--contrast-color) !important;
  border-color: #25BFEC;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.talent-bridge .transforming-talent .hr-academy-box {
  border-radius: 20px;
  border: 1px solid var(--accent-color);
  padding: 50px 0px 100px 50px;
  /* Main background */
  background: linear-gradient(30deg, #d9f3fb 0%, #eefbff 45%, #ffffff 75%);
  position: relative;
  overflow: hidden;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.talent-bridge .transforming-talent .hr-academy-box:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.talent-bridge .transforming-talent .hr-academy-box::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 294px;
  height: 197px;
  background: url("../images/hexagon-pattern.png") no-repeat;
  /* optional */
  transform: scaleX(-1);
  ;

}

.talent-bridge .transforming-talent .hr-academy-box h2 {
  font-size: 48px;
  font-weight: 600;
  color: var(--accent-color);
}

.talent-bridge .transforming-talent .hr-academy-box .jp-watermark {
  position: absolute;
  bottom: -24px;
  left: 0px;
  font-size: 130px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  pointer-events: none;
}

.talent-bridge .transforming-talent .hr-academy-box .btn-primary {
  background: transparent;
  color: var(--accent-color);
  padding: 14px 35px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-color);
}

.talent-bridge .transforming-talent .hr-academy-box .btn-primary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateY(-2px);
}

.talent-bridge .why-talent-bridge {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.talent-bridge .why-talent-bridge .before {
  position: absolute;
  content: '';
  top: -120px;
  right: -40px;
}

.talent-bridge .why-choose {
  overflow: clip;
}

.talent-bridge .why-choose.custom-software .custom-software-left-bottom {
  bottom: -80px;
  left: 16px;
}

.talent-bridge .why-choose.custom-software .custom-software-top-right {
  background: url(../images/talent-bridge-banner-us-bottom.png) no-repeat;
  top: 110px;
  right: 0px;
  width: 201px;
  height: 194px;
}

.talent-bridge .why-talent-bridge h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
}

.talent-bridge .why-talent-bridge ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #575757;
}

.talent-bridge .why-talent-bridge .image-wrapper {
  position: relative;
  display: inline-block;
}

.talent-bridge .why-talent-bridge .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid #25BFEC;
  /* blue outline */
  transform: translate(14px, 14px);
  z-index: -1;
}

.talent-bridge .why-talent-bridge .image-wrapper img {
  display: block;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  object-fit: cover;
  background: #fff;
}

/*--------------------------------------------------------------
# Workforce Management Section
--------------------------------------------------------------*/
.workforce-management .why-choose .custom-software-card h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--accent-color);
}

.workforce-management .about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff url(../images/about-hero-bg.png) no-repeat center top;
  background-size: cover;
  z-index: 1;
}

.workforce-management .why-choose .custom-software-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
}

.workforce-management .why-choose.custom-software .custom-software-top-right {
  top: 16px;
  right: 16px;
}

.workforce-management .why-choose.custom-software .custom-software-left-bottom {
  bottom: 16px;
  left: -140px;
}

.workforce-management .intelligence-card {
  background: #C2F2FC;
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.workforce-management .intelligence-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 85%);
}

.workforce-management .intelligence-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
}

.workforce-management .intelligence-card.active {
  background: #004899;
}

.workforce-management .intelligence-card.active p {
  color: var(--contrast-color);
}

.workforce-management .intelligence-card.active h3 {
  color: var(--contrast-color);
}

.workforce-management .talent-pipeline {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
  background: url(../images/talent-pipeline-bg.png) no-repeat center center;
}

.workforce-management .talent-pipeline .image-wrapper {
  position: relative;
  display: inline-block;
}

.workforce-management .talent-pipeline .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid #25BFEC;
  /* blue outline */
  transform: translate(14px, 14px);
  z-index: -1;
}

.workforce-management .talent-pipeline .image-wrapper img {
  display: block;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  object-fit: cover;
  background: #fff;
}

.workforce-management .delivering-compliance {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.workforce-management .delivering-compliance .delivering-compliance-card {
  border-radius: 20px;
  background: #F8FCFF url(../images/delivering-compliance-card-img.png) no-repeat bottom right;
  padding: 45px 45px 0px;

}

.workforce-management .delivering-compliance .delivering-compliance-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--heading-color);
}

.workforce-management .delivering-compliance .delivering-compliance-card h3 span {
  color: var(--accent-color);
}

/* Bootstrap 5 text input with search icon */
.has-search .form-control {
  padding-left: 2.375rem;
  border: 1px solid #E8E8E8;
  height: 58px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--default-color);
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 3.65rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

.form-select {
  border: 1px solid #E8E8E8;
  height: 58px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--default-color);
}

.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.form-select {
  background-position: right 0.75rem center;
}

.form-select:hover {
  border-color: var(--accent-color);
}

.devops-analytics .talent-pipeline {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
  background: url(../images/talent-pipeline-bg.png) no-repeat center center;
}

.devops-analytics .talent-pipeline .image-wrapper {
  position: relative;
  display: inline-block;
}

.devops-analytics .talent-pipeline .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid #25BFEC;
  /* blue outline */
  transform: translate(14px, 14px);
  z-index: -1;
}

.devops-analytics .talent-pipeline .image-wrapper img {
  display: block;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  object-fit: cover;
  background: #fff;
}

.devops-analytics .delivering-compliance {
  padding: 80px 0;
  scroll-margin-top: 92px;
  overflow: clip;
  position: relative;
  overflow-y: visible;
}

.devops-analytics .delivering-compliance .delivering-compliance-card {
  border-radius: 20px;
  background: #F8FCFF url(../images/delivering-compliance-card-img.png) no-repeat center right;
  padding: 45px 45px 45px;

}

.devops-analytics .delivering-compliance .delivering-compliance-card img {
  display: block;
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.devops-analytics .delivering-compliance .delivering-compliance-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--heading-color);
}

.devops-analytics .delivering-compliance .delivering-compliance-card h3 span {
  color: var(--accent-color);
}

.devops-analytics .why-choose .why-choose-content h2::after {
  top: -10px;
}

.devops-analytics .btn-learn-more {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  margin: 10px 10px 10px 0px;
  transition: all 0.5s ease-in-out;
}

.devops-analytics .btn-learn-more:hover {
  background-image: var(--background-gradient);
}

.devops-analytics .about-hero .about-banner-img {
  margin-top: 2.5rem;
}

.devops-analytics .about-hero .about-banner-img img {
  border-radius: 54px;
  border: 7px solid var(--contrast-color);
}

.devops-analytics .hero .hero-content h1 {
  font-size: 62px;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  width: 75%;
  margin: 0 auto 20px;
}

.devops-analytics .hero .hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #575757;
  margin: 0 auto 35px;
}

.devops-analytics .core-business {
  padding: 10px 0 80px;
}

.devops-analytics .delivering-compliance::after {
  position: absolute;
  content: '';
  right: -40px;
  bottom: -60px;
  width: 153px;
  height: 241px;
  background: url(../images/cloud-built-bg.png) no-repeat;
  z-index: -1;

}

.devops-analytics .why-choose {
  overflow: hidden;
}

.devops-analytics .why-choose::before {
  position: absolute;
  content: '';
  background: url(../images/explore-features-top.png) no-repeat;
  width: 207px;
  height: 199px;
  left: -120px;
  top: 0px;
  transform: scaleX(-1);
}

.devops-analytics .why-choose::after {
  position: absolute;
  content: '';
  bottom: -80px;
  right: 0px;
  background: url(../images/impact-scale-bg.png) no-repeat;
  width: 113px;
  height: 219px;
}

.ai-ml.devops-analytics .why-choose::before {
  display: none;
}

.ai-ml.devops-analytics .why-choose::after {
  display: none;
}

.ai-ml .why-choose.custom-software .custom-software-top-right {
  top: 16px;
  right: -120px;
}

.ai-ml .why-choose.custom-software .custom-software-left-bottom {
  bottom: -120px;
}

.ai-ml .why-choose.custom-software {
  background: #F8FCFF;
}

.web-development .why-choose.custom-software .custom-software-top-right {
  top: 16px;
  right: -120px;
}

.akal-japanese-academy-new-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
}

.talent .image-wrapper {
  position: relative;
  display: inline-block;
}

.talent .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid #25BFEC;
  /* blue outline */
  transform: translate(14px, 14px);
  z-index: -1;
}

.talent .image-wrapper img {
  display: block;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  object-fit: cover;
  background: #fff;
}

.modal-akal-japanese-academy-box {
  border-radius: 20px;
  border: 1px solid #25BFEC;
  background: linear-gradient(165deg, #ffffff 50%, #eaf9fe 80%, #d4f2fb 100%);
  position: relative;
  overflow: hidden;

}

.modal-akal-japanese-academy-box .modal-content {
  background: transparent;
  border: none;
}

.modal-akal-japanese-academy-box .nav.nav-tabs {
  width: fit-content;
  margin: 0 auto;
  background-color: #31AADD;
  border-radius: 48px;
  padding: 16px 16px;
  position: sticky;
  margin-top: -40px;
  margin-bottom: 32px;
}

.modal-akal-japanese-academy-box .nav-tabs .nav-link {
  border: none;
  color: var(--contrast-color);
  border-radius: 48px;
  font-weight: 500;
}

.modal-akal-japanese-academy-box .nav-link {
  padding: 16px 12px;
  border-radius: 48px;
}

.modal-akal-japanese-academy-box .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--contrast-color);
  border-radius: 36px;
  padding: 16px 12px;
  border: none;
  font-size: 14px;
  color: #101828;
  font-weight: 600;
  border-radius: 48px;
}

.modal-akal-japanese-academy-box .modal-header {
  border-bottom: none;
}

.modal-akal-japanese-academy-box:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 294px;
  height: 197px;
  background: url(../images/hexagon-pattern.png) no-repeat;
}

.modal-akal-japanese-academy-box h2 {
  font-size: 32px;
  font-weight: 600;
  color: #25BFEC;
  margin-bottom: 24px;
}

.modal-akal-japanese-academy-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--default-color);
}

.modal-akal-japanese-academy-box p {
  margin-bottom: 1rem;
}

.modal-akal-japanese-academy-box .jp-watermark {
  position: absolute;
  bottom: -12px;
  right: -40px;
  font-size: 130px;
  font-weight: 700;
  color: #25BFEC;
  line-height: 1;
  pointer-events: none;
  opacity: 0.8;
}

/* Extra small (phones) */
@media (max-width: 575.98px) {
  .cta-section p {
    font-size: 16px;
  }

  .award .award-box.mar-top {
    margin-top: -76px;
  }

  .home-page-banner {
    display: none;
  }

  .hero-content-home-page {
    width: 100%;
  }

  .hero-content-home-page p {
    width: 100%;
  }

  .hero {
    padding: 120px 0 0px 0;
  }

  .hero .hero-content h1::after {
    display: none;
  }

  .hero .hero-content h1 {
    text-align: left;
    width: 100%;
  }

  .hero .hero-content {
    margin-bottom: 0px;
    text-align: left;
  }

  .hero .hero-actions {
    flex-direction: inherit;
    gap: 24px;
  }

  .hero .btn-primary {
    padding: 14px 16px;
    font-size: 14px;
    letter-spacing: -0.2px;
  }

  .hero .hero-image {
    margin-top: 0px;
    right: 0px;
    bottom: 32px;
  }

  .award-box {
    border-radius: 40px 40px 0 0;
    padding: 24px 16px;
    display: flex;
    box-sizing: border-box;
    flex: 0 0 100%;
    position: relative !important;
    /* 🔥 FIX */
  }

  .award-box img {
    height: 30px;
  }

  .heading-text {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }

  .impact-scale {
    padding: 40px 0;
    background: none;
  }

  .impact-scale .impact-content p {
    margin-bottom: 0;
  }

  .impact-scale .btn-request-call {
    font-size: 16px;
    padding: 12px 12px;
    border-radius: 4px;
    margin-top: 1.5rem;
  }

  .core-business .tab-content p {
    font-size: 16px;
    padding-left: 0px;
  }

  .core-business .tab-content h3 {
    font-size: 24px;
    padding-left: 0px;
  }

  .core-business .tab-content .btn-learn-more {
    margin: 0px;
  }

  .core-business .tab-content {
    border-radius: 24px;
    padding: 24px 0px 0px 24px;
    margin-top: 0px;
    background: #F8FCFF none;
  }

  .talent .talent-card {
    padding: 24px;
  }

  .talent .talent-card h4 {
    font-size: 24px;
  }

  .talent p {
    font-size: 16px;
  }

  .why-choose .why-choose-content {
    min-height: 720px;
    padding: 24px;
  }

  .why-choose .why-choose-content p {
    font-size: 16px;
  }

  .why-choose .why-choose-content h2 {
    font-size: 24px;
  }

  .why-choose .why-choose-content h2 span {
    font-size: 48px;
  }

  .why-choose-content.align-items-center {
    align-items: start !important;
  }

  footer {
    background: url(../images/footer-bg.png) no-repeat bottom right;
  }

  footer .footer-links {
    margin-bottom: 0px;
  }

  .why-choose .why-choose-card {
    padding: 24px;
  }

  .talent {
    padding: 40px 0;
  }

  .organisation-logo {
    padding: 40px 0 0;
  }

  .tabs {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .cta-section {
    padding: 40px 0 0px 0;
  }

  .cta-section .cta-banner {
    position: inherit;
    bottom: 0px;
    right: 0px;
  }

  .cta-section .cta-banner img {
    width: 95%;
    margin: 0 auto;
  }

  .cta-section .cta-content {
    min-height: auto;
    margin-bottom: 32px;
  }

  footer .footer-top {
    padding-top: 40px;
  }

  .tabs .tabs-header {
    margin-bottom: 0px;
  }

  .tabs .tab-content .content-area h3 {
    margin-bottom: 16px;
  }

  .success-stories .success-stories-elements {
    display: none;
  }

  .success-stories {
    padding: 40px 0;
    background: #FFFAFA url(../images/success-stories-bg.png) no-repeat center bottom;
  }

  .success-stories::before {
    display: none;
  }

  .why-choose {
    padding: 40px 0;
  }

  .talent .talent-element {
    display: none;
  }

  .organisation-logo-element {
    display: none;
  }

  .core-business {
    padding: 24px 0 40px 0;
  }

  .core-business .nav {
    display: inline-block;
    width: 100% !important;
    text-align: center;
    margin-bottom: 24px !important;
  }

  .core-business .nav button {
    width: 100%;
  }

  .core-business .tab-content .img-radius {
    margin-top: 24px;
  }

  .impact-scale::before {
    background: url(../images/impact-scale-mobile-bg.png) no-repeat;
    width: 67px;
    height: 147px;
    top: 16px;
    right: 0px;
  }

  .core-business::before {
    display: none;
  }

  .why-choose .why-choose-element {
    top: -40px;
    left: 0px;
    width: 58px;
    height: 104px;
  }

  .about-us .about-hero::before {
    display: none;
  }

  .about-us .our-values .our-values-card {
    width: 100%;
    padding: 24px;

  }

  .about-us .about-hero .hero-content .about-banner-img::after {
    display: none;
  }

  .about-us .technology-humanity .card {
    padding: 32px 24px;
  }

  .about-us .technology-humanity .card h4 {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  .connect-with-us h2 {
    font-size: 32px;
  }

  .connect-with-us {
    padding: 40px 0 150px;
  }

  .connect-with-us::after {
    display: none;
  }

  p {
    margin-bottom: 1.5rem;
  }

  .about-us .technology-humanity .card .founder-img {
    position: inherit;
    bottom: 0px;
  }

  .about-us .technology-humanity .card p:last-child {
    margin-bottom: 0rem;
  }

  .about-us .technology-humanity .card .founder-img img {
    margin: 0px 0px -32px -16px;
  }

  .about-us .founder-desk {
    padding: 40px 0;
    background: none;
  }

  .about-us .founder-desk .card h4 {
    padding-right: 0;
  }

  .about-us .founder-desk .card p {
    padding-right: 0;
  }

  .about-us .founder-desk .card .founder-img {
    position: inherit;
    bottom: 0px;
  }

  .about-us .founder-desk .card {
    padding: 32px 24px 0px;
    background: var(--contrast-color) url(../images/founder-bg.png) no-repeat bottom right;
  }

  .about-us .awards-recognition {
    padding: 40px 0px;
  }

  .about-us .awards-recognition::before {
    display: none;
  }

  .about-us .awards-recognition::after {
    display: none;
  }

  .about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-next,
  .about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-prev {
    position: inherit;
  }

  .about-us .akal-work-culture {
    padding: 0px 0 40px;
  }

  .about-us .akal-work-culture .akal-quote-card {
    margin: 40px 0px;
    padding: 24px;
  }

  .about-us .our-mission::before {
    display: none;
  }

  .about-us .our-mission {
    padding: 0px 0;
  }

  .timeline-item {
    padding-bottom: 40px;
  }

  .about-us .csr-commitment-driving {
    padding: 40px 0;
  }

  .about-us .csr-commitment-driving h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-us .csr-commitment-driving p {
    margin-bottom: 1rem;
  }

  .about-us .about-hero {
    padding: 120px 0px 0px 0px;
  }

  .about-us .about-hero .hero-content h2 {
    font-size: 28px;
  }

  .about-us .about-hero .hero-content {
    margin-top: 0px;
  }

  .about-us .technology-humanity {
    padding: 40px 0;
  }

  .about-us .our-values {
    padding: 40px 0;
  }

  .about-us .our-values .our-values-card h2 {
    font-size: 180px;
    line-height: 180px;
  }

  .tabs .tabs-element {
    display: none;
  }

  .why-choose.custom-software .custom-software-left-bottom {
    background: url(../images/about-banner-us-bottom-mobile.png) no-repeat;
    width: 71px;
    height: 107px;
  }

  .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    right: 0px;
    top: 132px;
    width: 68px;
    height: 89px;
  }

  .talent .talent-service-top {
    background: url(../images/talent-service-top-bottom-mobile.png) no-repeat;
    right: 0px;
    top: 16px;
    width: 71px;
    height: 107px;
  }

  .talent .talent-service-bottom {
    display: none;
  }

  .public-impact-element {
    display: none;
  }

  .public-impact-box.box-1 {
    padding: 48px 24px;
    background: #110E12 url(../images/public-impact-box-1.png) no-repeat bottom center;
    display: flex;
    align-items: start;
  }

  .public-impact-box p {
    width: auto;
  }

  .public-impact-box.box-2 {
    padding: 0px 24px;
  }

  .public-impact-box.box-3 {
    padding: 0px 24px;
  }

  .talent.govt-tech-solutions {
    padding-top: 120px;
  }

  .about-banner img {
    border-radius: 16px;
  }

  .about-banner::before {
    background: url(../images/govt-tech-solutions-banner-us-top-mobile.png) no-repeat;
    top: 8px;
    left: -16px;
    width: 67px;
    height: 99px;
  }

  .about-banner::after {
    background: url(../images/govt-tech-solutions-banner-us-bottom-mobile.png) no-repeat;
    bottom: 0px;
    right: -16px;
    width: 67px;
    height: 94px;
    z-index: -1;
  }

  .about-banner {
    padding: 40px 0px;
  }

  .contact-us .contact-us-form::before {
    display: none;
  }

  .contact-us .contact-us-form .form-box {
    padding: 24px;

  }

  .contact-us .award .award-box {
    max-width: 100%;
    border-radius: 40px 40px 0 0;
    padding: 24px;
    margin-top: 20px;
    display: flex;
    box-sizing: border-box;
    position: inherit;
  }

  .contact-us .about-hero {
    padding-bottom: 40px;
  }

  .contact-us .connect-with-us p {
    margin-bottom: 2.5rem;
  }

  .contact-us .contact-us-form {
    margin-top: -270px;
  }

  .contact-us .hero-content::after {
    position: absolute;
    content: '';
    background: url(../images/contact-us-mobile.png) no-repeat right bottom !important;
    bottom: -170px;
    right: -16px;
    width: 130px;
    height: 213px;
  }

  .contact-us .about-hero::after {
    display: none;
  }

  .contact-us .hero-content p {
    margin-bottom: 4rem;
  }

  .connect-with-us p {
    width: 100%;
  }

  .case-studies .detailed-case-studies-box .detailed-case-studies-heading {
    padding: 24px;
  }

  .case-studies .about-hero {
    padding-bottom: 0px;
  }

  .case-studies .case-studies-owlcarousel .owl-item.active.center .case-studies-owlcarousel-box {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .case-studies .case-studies-top-element {
    top: 95px;
    left: -16px;
    width: 67px;
    height: 99px;
  }

  .case-studies .about-hero {
    padding-top: 190px;
  }

  .case-studies .case-studies-bottom-element {
    right: -16px;
    bottom: -24px;
    z-index: 1;
  }

  .connect-with-us p {
    margin-bottom: 2rem;
  }

  .why-choose .custom-software-card {
    padding: 24px;
  }

  .talent-bridge .why-talent-bridge .before {
    display: none;
  }

  .talent-bridge .why-talent-bridge {
    padding: 40px 0;
  }

  .talent-bridge .transforming-talent {
    padding: 40px 0px 40px;
  }

  .talent-bridge .challenge .challenge-box-card {
    padding: 24px;
  }

  .talent-bridge .challenge::after {
    display: none;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box {
    padding: 24px 24px 0px;
    min-height: 560px;
  }

  .talent-bridge .transformng-talent .akal-japanese-academy-box::before {
    display: none;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box h2 {
    font-size: 26px;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box .jp-watermark {
    bottom: 0px;
    right: 0px;
    font-size: 64px;
  }

  .talent-bridge .transforming-talent .hr-academy-box {
    padding: 24px 24px 0px;
    min-height: 670px;
  }

  .talent-bridge .transforming-talent .hr-academy-box::before {
    display: none;
  }

  .talent-bridge .transforming-talent .hr-academy-box h2 {
    font-size: 28px;
  }

  .talent-bridge .transforming-talent .hr-academy-box .jp-watermark {
    bottom: -12px;
    font-size: 80px;
  }

  .talent-bridge .why-choose.custom-software .custom-software-left-bottom {
    bottom: 8px;
    left: 0px;
  }

  .talent-bridge .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 80px;
    right: 0px;
    width: 68px;
    height: 89px;
  }

  .talent-bridge .challenge::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -60px;
    width: 58px;
    height: 104px;
    z-index: -1;
    opacity: 0.6;
    background: url(../images/core-business-top-mobile.png) no-repeat;
  }

  .talent-bridge .challenge {
    padding: 40px 0 0;
  }

  .talent-bridge .about-hero .about-banner-img::before {
    display: none;
  }

  .talent-bridge .about-hero .about-banner-img::after {
    display: none;
  }

  .workforce-management .delivering-compliance .delivering-compliance-card {
    padding: 24px 24px 0px;
    background: #F8FCFF url(../images/delivering-compliance-card-img.png) no-repeat center bottom;
  }

  .workforce-management .delivering-compliance .delivering-compliance-card h3 {
    font-size: 28px;
  }

  .workforce-management .talent-pipeline {
    padding: 40px 0;
  }

  .workforce-management .why-choose .custom-software-card h3 {
    font-size: 28px;
  }

  .workforce-management .transforming-talent {
    padding: 40px 0px;
  }

  .workforce-management .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 10px;
    right: 0px;
    width: 68px;
    height: 89px;
  }

  .workforce-management .about-hero .about-banner-img {
    position: relative;
  }

  .workforce-management .about-hero .about-banner-img::before {
    display: block;
    position: absolute;
    content: '';
    width: 58px;
    height: 104px;
    top: -32px;
    left: -16px;
    background: url(../images/core-business-top-mobile.png) no-repeat;
    z-index: -1;
  }

  .workforce-management .about-hero .about-banner-img::after {
    display: block;
    position: absolute;
    content: '';
    width: 67px;
    height: 147px;
    bottom: -70px;
    right: 0px;
    z-index: -1;
    background: url(../images/impact-scale-mobile-bg.png) no-repeat;
  }

  .hr-cloud .about-hero .top-element {
    display: none;
  }

  .hr-cloud .hero .hero-content p {
    width: 100%;
  }

  .hr-cloud .about-hero {
    padding-top: 140px;
  }

  .hr-cloud .tankhapay-solution {
    padding: 40px 0 0;
    background: url(../images/tankhapay-solution-bg.png) no-repeat center bottom;
  }

  .hr-cloud .tankhapay-solution .image-container::after {
    bottom: 0px;
  }

  .hr-cloud .impact-scale .impact-content {
    padding: 24px;

  }

  .impact-scale .impact-content .impact-number {
    font-size: 28px;
  }

  .hr-cloud .explore-features .explore-features-card h4 {
    font-size: 28px;
  }

  .hr-cloud .why-choose {
    padding: 40px 0;
  }

  .hr-cloud .explore-features .explore-features-card {
    padding: 24px;
  }

  .hr-cloud .about-hero .bottom-element {
    right: -40px;
  }

  .hr-cloud .explore-features .element-top {
    right: -32px;
    top: 24px;
  }

  .hr-cloud .explore-features .element-bottom {
    left: -132px;
    bottom: -32px;
  }

  .csr-page-section .award .award-box {
    max-width: 100%;
    border-radius: 40px 40px 0 0;
    padding: 24px;
    margin-top: -77px;
    display: flex;
    box-sizing: border-box;
    position: inherit;
  }

  .csr-page-section .our-foundation .impact-content>p {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }

  .csr-page-section .our-foundation {
    padding: 80px 0 40px 0;
  }

  .csr-page-section .about-hero {
    padding: 140px 0px 133px 0px;
    scroll-margin-top: 92px;
    overflow: clip;
    position: relative;
    overflow-y: visible;
  }

  .csr-page-section .about-hero-element-1 {
    display: none;
  }

  .csr-page-section .about-hero-element {
    display: none;
  }

  .csr-page-section .about-hero::after {
    position: absolute;
    content: '';
    right: -134px;
    bottom: -86px;
    z-index: 1;
    background: url(../images/explore-features-bottom.png) no-repeat;
    width: 268px;
    height: 209px;
  }

  .cloud-solutions .high-performance {
    padding: 0px 0 0px 0;
  }

  .cloud-solutions .high-performance .heading-text {
    width: 100%;
    margin: 0 auto;
  }

  .cloud-solutions .high-performance .high-performance-box {
    padding: 24px;
    margin-top: .5rem;
  }

  .cloud-solutions .high-performance .high-performance-box img {
    margin-top: 2.5rem;
  }

  .cloud-solutions .why-choose .mar-left,
  .data-engineering .why-choose .mar-left {
    margin-left: 0px;
  }

  .cloud-solutions .why-choose .why-choose-content,
  .data-engineering .why-choose .why-choose-content {
    min-height: 580px;
    padding: 40px 24px;
  }

  .cloud-solutions .high-performance .high-performance-box::before {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: -32px;
    right: -16px;
    width: 68px;
    height: 89px;
    z-index: -1;
  }

  .cloud-solutions .explore-our-solutions .explore-our-solutions-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 54px;
    right: -16px;
    width: 68px;
    height: 89px;
    z-index: -1;
  }

  .cloud-solutions .explore-our-solutions {
    padding: 20px 0 40px 0;
  }

  .cloud-solutions .explore-our-solutions .explore-our-solutions-left-bottom {
    background: url(../images/about-banner-us-bottom-mobile.png) no-repeat;
    width: 71px;
    height: 107px;
    bottom: 8px;
    bottom: 250px;
  }

  .cloud-solutions .platform-expertise h3 {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  .cloud-solutions .platform-expertise {
    padding: 24px;
  }

  .devops-analytics .hero .hero-content h1 {
    font-size: 32px;
    width: 100%;

  }

  .devops-analytics .hero .hero-content p {
    width: 100%;
  }

  .devops-analytics .delivering-compliance .delivering-compliance-card {
    padding: 24px;
  }

  .devops-analytics .btn-learn-more {
    padding: 12px 24px;
  }

  .devops-analytics .why-choose::before {
    background: url(../images/devops-analytics-top.png) no-repeat;
    top: 0px;
    left: -32px;
    width: 114px;
    height: 111px;
    transform: scaleX(1);
  }

  .devops-analytics .core-business {
    padding: 10px 0 40px;
  }

  .devops-analytics .why-choose {
    overflow-y: visible;
    overflow: clip;
  }

  .devops-analytics .why-choose::after {
    position: absolute;
    content: '';
    bottom: -80px;
    right: -32px;
    background: url(../images/devops-analytics-bottom.png) no-repeat;
    width: 161px;
    height: 155px;
  }

  .devops-analytics .talent-pipeline {
    padding: 40px 0;
  }

  .devops-analytics .delivering-compliance {
    padding: 40px 0;
  }

  .ai-ml.devops-analytics .why-choose::before {
    display: none;
  }

  .ai-ml.devops-analytics .why-choose::after {
    display: none;
  }

  .ai-ml .why-choose.custom-software .custom-software-top-right {
    display: none;
  }

  .ai-ml .why-choose.custom-software .custom-software-left-bottom {
    bottom: -50px;
  }

  .web-development .why-choose.custom-software .custom-software-top-right {
    display: none;
  }

  .data-engineering .why-choose-after {
    display: none;
  }
}

/* Small (tablets) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .cta-section p {
    font-size: 16px;
  }

  .home-page-banner {
    display: none;
  }

  .hero-content-home-page {
    width: 100%;
  }

  .hero-content-home-page p {
    width: 100%;
  }

  .hero {
    padding: 120px 0 0px 0;
  }

  .hero .hero-content h1::after {
    display: none;
  }

  .hero .hero-content h1 {
    text-align: left;
    width: 100%;
  }

  .hero .hero-content {
    margin-bottom: 0px;
    text-align: left;
  }

  .hero .hero-actions {
    flex-direction: inherit;
    gap: 24px;
  }

  .hero .btn-primary {
    padding: 14px 16px;
    font-size: 14px;
    letter-spacing: -0.2px;
  }

  .hero .hero-image {
    margin-top: 0px;
    right: 0px;
    bottom: 32px;
  }

  .award-box {
    max-width: 100%;
    border-radius: 40px 40px 0 0;
    padding: 24px 16px;
    display: flex;
    box-sizing: border-box;
  }

  .award-box img {
    height: 48px;
  }

  .heading-text {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }

  .impact-scale {
    padding: 40px 0;
    background: none;
  }

  .impact-scale .impact-content p {
    margin-bottom: 0;
  }

  .impact-scale .btn-request-call {
    font-size: 16px;
    padding: 12px 12px;
    border-radius: 4px;
    margin-top: 1.5rem;
  }

  .core-business .tab-content p {
    font-size: 16px;
    padding-left: 0px;
  }

  .core-business .tab-content h3 {
    font-size: 24px;
    padding-left: 0px;
  }

  .core-business .tab-content .btn-learn-more {
    margin: 0px;
  }

  .core-business .tab-content {
    border-radius: 24px;
    padding: 24px 0px 0px 24px;
    margin-top: 0px;
    background: #F8FCFF none;
  }

  .talent .talent-card {
    padding: 24px;
  }

  .talent .talent-card h4 {
    font-size: 24px;
  }

  .talent p {
    font-size: 16px;
  }

  .why-choose .why-choose-content {
    min-height: 720px;
    padding: 40px 24px;
  }

  .why-choose .why-choose-content p {
    font-size: 16px;
  }

  .why-choose .why-choose-content h2 {
    font-size: 24px;
  }

  .why-choose .why-choose-content h2 span {
    font-size: 48px;
  }

  .why-choose-content.align-items-center {
    align-items: start !important;
  }

  footer {
    background: url(../images/footer-bg.png) no-repeat bottom right;
  }

  footer .footer-links {
    margin-bottom: 0px;
  }

  .why-choose .why-choose-card {
    padding: 24px;
  }

  .talent {
    padding: 40px 0;
  }

  .organisation-logo {
    padding: 40px 0 0;
  }

  .tabs {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .cta-section {
    padding: 40px 0 0px 0;
  }

  .cta-section .cta-banner {
    position: inherit;
    bottom: -32px;
    right: 0px;
  }


  .cta-section .cta-content {
    min-height: auto;
    margin-bottom: 32px;
  }

  footer .footer-top {
    padding-top: 40px;
  }

  .tabs .tabs-header {
    margin-bottom: 0px;
  }

  .tabs .tab-content .content-area h3 {
    margin-bottom: 16px;
  }

  .success-stories .success-stories-elements {
    display: none;
  }

  .success-stories {
    padding: 40px 0;
    background: #FFFAFA url(../images/success-stories-bg.png) no-repeat center bottom;
  }

  .success-stories::before {
    display: none;
  }

  .why-choose {
    padding: 40px 0;
  }

  .talent .talent-element {
    display: none;
  }

  .organisation-logo-element {
    display: none;
  }

  .core-business {
    padding: 24px 0 40px 0;
  }

  .core-business .nav {
    display: inline-block;
    width: 100% !important;
    text-align: center;
    margin-bottom: 24px !important;
  }

  .core-business .nav button {
    width: 100%;
  }

  .core-business .tab-content .img-radius {
    margin-top: 24px;
  }

  .impact-scale::before {
    background: url(../images/impact-scale-mobile-bg.png) no-repeat;
    width: 67px;
    height: 147px;
    top: 16px;
    right: 0px;
  }

  .core-business::before {
    display: none;
  }

  .why-choose .why-choose-element {
    top: -40px;
    left: 0px;
    width: 58px;
    height: 104px;
  }

  .about-us .about-hero::before {
    display: none;
  }

  .about-us .our-values .our-values-card {
    width: 100%;
    padding: 24px;

  }

  .about-us .about-hero .hero-content .about-banner-img::after {
    display: none;
  }

  .about-us .technology-humanity .card {
    padding: 32px 24px;
  }

  .about-us .technology-humanity .card h4 {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  .connect-with-us h2 {
    font-size: 32px;
  }

  .connect-with-us {
    padding: 40px 0 140px;
  }

  .connect-with-us::after {
    display: none;
  }

  p {
    margin-bottom: 1.5rem;
  }

  .about-us .technology-humanity .card .founder-img {
    position: inherit;
    bottom: 0px;
  }

  .about-us .technology-humanity .card p:last-child {
    margin-bottom: 0rem;
  }

  .about-us .technology-humanity .card .founder-img img {
    margin: 0px 0px -32px 0px;
  }

  .about-us .founder-desk {
    padding: 40px 0;
    background: none;
  }

  .about-us .founder-desk .card h4 {
    padding-right: 0;
  }

  .about-us .founder-desk .card p {
    padding-right: 0;
  }

  .about-us .founder-desk .card .founder-img {
    position: inherit;
    bottom: 0px;
  }

  .about-us .founder-desk .card {
    padding: 32px 24px 0px;
    background: var(--contrast-color) url(../images/founder-bg.png) no-repeat bottom right;
  }

  .about-us .awards-recognition {
    padding: 40px 0px;
  }

  .about-us .awards-recognition::before {
    display: none;
  }

  .about-us .awards-recognition::after {
    display: none;
  }

  .about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-next,
  .about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-prev {
    position: inherit;
  }

  .about-us .akal-work-culture {
    padding: 0px 0 40px;
  }

  .about-us .akal-work-culture .akal-quote-card {
    margin: 40px 0px;
    padding: 24px;
  }

  .about-us .our-mission::before {
    display: none;
  }

  .about-us .our-mission {
    padding: 0px 0;
  }

  .timeline-item {
    padding-bottom: 40px;
  }

  .about-us .csr-commitment-driving {
    padding: 40px 0;
  }

  .about-us .csr-commitment-driving h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-us .csr-commitment-driving p {
    margin-bottom: 1rem;
  }

  .about-us .about-hero {
    padding: 120px 0px 0px 0px;
  }

  .about-us .about-hero .hero-content h2 {
    font-size: 28px;
  }

  .about-us .about-hero .hero-content {
    margin-top: 0px;
  }

  .about-us .technology-humanity {
    padding: 40px 0;
  }

  .about-us .our-values {
    padding: 40px 0;
  }

  .about-us .our-values .our-values-card h2 {
    font-size: 180px;
    line-height: 180px;
  }

  .tabs .tabs-element {
    display: none;
  }

  .why-choose.custom-software .custom-software-left-bottom {
    background: url(../images/about-banner-us-bottom-mobile.png) no-repeat;
    width: 71px;
    height: 107px;
  }

  .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    right: 0px;
    top: 132px;
    width: 68px;
    height: 89px;
  }

  .talent .talent-service-top {
    background: url(../images/talent-service-top-bottom-mobile.png) no-repeat;
    right: 0px;
    top: 16px;
    width: 71px;
    height: 107px;
  }

  .talent .talent-service-bottom {
    display: none;
  }

  .public-impact-element {
    display: none;
  }

  .public-impact-box.box-1 {
    padding: 48px 24px;
    background: #110E12 url(../images/public-impact-box-1.png) no-repeat bottom center;
    height: 550px;
    display: flex;
    align-items: start;
  }

  .public-impact-box p {
    width: auto;
  }

  .public-impact-box.box-2 {
    padding: 0px 24px;
  }

  .public-impact-box.box-3 {
    padding: 0px 24px;
  }

  .talent.govt-tech-solutions {
    padding-top: 120px;
  }

  .about-banner img {
    border-radius: 16px;
  }

  .about-banner::before {
    background: url(../images/govt-tech-solutions-banner-us-top-mobile.png) no-repeat;
    top: -60px;
    left: -75px;
    width: 67px;
    height: 99px;
  }

  .about-banner::after {
    background: url(../images/govt-tech-solutions-banner-us-bottom-mobile.png) no-repeat;
    bottom: 0px;
    right: -75px;
    width: 67px;
    height: 94px;
    z-index: -1;
  }

  .about-banner {
    padding-bottom: 40px;
  }

  .contact-us .contact-us-form::before {
    display: none;
  }

  .contact-us .contact-us-form .form-box {
    padding: 24px;

  }

  .contact-us .award .award-box {
    max-width: 100%;
    border-radius: 40px 40px 0 0;
    padding: 24px;
    margin-top: 20px;
    display: flex;
    box-sizing: border-box;
    position: inherit;
  }

  .contact-us .about-hero {
    padding-bottom: 40px;
  }

  .contact-us .connect-with-us p {
    margin-bottom: 2.5rem;
  }

  .contact-us .contact-us-form {
    margin-top: -270px;
  }

  .contact-us .hero-content::after {
    position: absolute;
    content: '';
    background: url(../images/contact-us-mobile.png) no-repeat right bottom !important;
    bottom: -170px;
    right: -75px;
    width: 130px;
    height: 213px;
  }

  .contact-us .about-hero::after {
    display: none;
  }

  .contact-us .hero-content p {
    margin-bottom: 12rem;
  }

  .connect-with-us p {
    width: 100%;
  }

  .contact-us .contact-us-form {
    margin-top: -320px;
  }

  .contact-us .hero-content::after {
    position: absolute;
    content: '';
    background: url(../images/contact-us-mobile.png) no-repeat right bottom !important;
    bottom: -170px;
    width: 130px;
    height: 213px;
  }

  .contact-us .about-hero::after {
    display: none;
  }

  .contact-us .hero-content p {
    margin-bottom: 4rem;
  }

  .connect-with-us p {
    width: 100%;
  }

  .case-studies .detailed-case-studies-box .detailed-case-studies-heading {
    padding: 24px;
  }

  .case-studies .about-hero {
    padding-bottom: 0px;
  }

  .case-studies .case-studies-owlcarousel .owl-item.active.center .case-studies-owlcarousel-box {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .case-studies .case-studies-top-element {
    top: 95px;
    left: -16px;
    width: 67px;
    height: 99px;
  }

  .case-studies .about-hero {
    padding-top: 150px;
  }

  .case-studies .case-studies-bottom-element {
    right: -16px;
    bottom: -24px;
    z-index: 1;
  }

  .connect-with-us p {
    margin-bottom: 2rem;
  }

  .why-choose .custom-software-card {
    padding: 24px;
  }

  .talent-bridge .why-talent-bridge .before {
    display: none;
  }

  .talent-bridge .why-talent-bridge {
    padding: 40px 0;
  }

  .talent-bridge .transforming-talent {
    padding: 40px 0px;
  }

  .talent-bridge .challenge .challenge-box-card {
    padding: 24px;
  }

  .talent-bridge .challenge::after {
    display: none;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box {
    padding: 24px 24px 0px;
    min-height: 460px;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box::before {
    display: none;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box h2 {
    font-size: 26px;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box .jp-watermark {
    bottom: -5px;
    right: 0px;
    font-size: 72px;
  }

  .talent-bridge .transforming-talent .hr-academy-box {
    padding: 24px 24px 0px;
    min-height: 540px;
  }

  .talent-bridge .transforming-talent .hr-academy-box::before {
    display: none;
  }

  .talent-bridge .transforming-talent .hr-academy-box h2 {
    font-size: 28px;
  }

  .talent-bridge .transforming-talent .hr-academy-box .jp-watermark {
    bottom: -12px;
    font-size: 80px;
  }

  .talent-bridge .why-choose.custom-software .custom-software-left-bottom {
    bottom: 8px;
    left: 0px;
  }

  .talent-bridge .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 80px;
    right: 0px;
    width: 68px;
    height: 89px;
  }

  .talent-bridge .challenge::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -60px;
    width: 58px;
    height: 104px;
    z-index: -1;
    opacity: 0.6;
    background: url(../images/core-business-top-mobile.png) no-repeat;
  }

  .talent-bridge .challenge {
    padding: 40px 0 0;
  }

  .talent-bridge .about-hero .about-banner-img::before {
    display: none;
  }

  .talent-bridge .about-hero .about-banner-img::after {
    display: none;
  }

  .workforce-management .delivering-compliance .delivering-compliance-card {
    padding: 24px 24px 0px;
    background: #F8FCFF url(../images/delivering-compliance-card-img.png) no-repeat center bottom;
  }

  .workforce-management .delivering-compliance .delivering-compliance-card h3 {
    font-size: 28px;
  }

  .workforce-management .talent-pipeline {
    padding: 40px 0;
  }

  .workforce-management .why-choose .custom-software-card h3 {
    font-size: 28px;
  }

  .workforce-management .transforming-talent {
    padding: 40px 0px;
  }

  .workforce-management .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 10px;
    right: 0px;
    width: 68px;
    height: 89px;
  }

  .workforce-management .about-hero .about-banner-img {
    position: relative;
  }

  .workforce-management .about-hero .about-banner-img::before {
    display: block;
    position: absolute;
    content: '';
    width: 58px;
    height: 104px;
    top: -32px;
    left: -76px;
    background: url(../images/core-business-top-mobile.png) no-repeat;
    z-index: -1;
  }

  .workforce-management .about-hero .about-banner-img::after {
    display: block;
    position: absolute;
    content: '';
    width: 67px;
    height: 147px;
    bottom: -70px;
    right: -76px;
    z-index: -1;
    background: url(../images/impact-scale-mobile-bg.png) no-repeat;
  }

  .hr-cloud .about-hero .top-element {
    display: none;
  }

  .hr-cloud .hero .hero-content p {
    width: 100%;
  }

  .hr-cloud .about-hero {
    padding-top: 140px;
  }

  .hr-cloud .tankhapay-solution {
    padding: 40px 0 0;
    background: url(../images/tankhapay-solution-bg.png) no-repeat center bottom;
  }

  .hr-cloud .tankhapay-solution .image-container::after {
    bottom: 0px;
    left: -190px;
  }

  .hr-cloud .impact-scale .impact-content {
    padding: 24px;

  }

  .impact-scale .impact-content .impact-number {
    font-size: 28px;
  }

  .hr-cloud .explore-features .explore-features-card h4 {
    font-size: 28px;
  }

  .hr-cloud .why-choose {
    padding: 40px 0;
  }

  .hr-cloud .explore-features .explore-features-card {
    padding: 24px;
  }

  .hr-cloud .about-hero .bottom-element {
    right: -40px;
  }

  .hr-cloud .explore-features .element-top {
    right: -140px;
    top: 24px;
  }

  .hr-cloud .explore-features .element-bottom {
    left: -140px;
    bottom: -32px;
  }

  .csr-page-section .our-foundation .impact-content>p {
    font-size: 16px;
    margin-bottom: 0rem;
  }

  .csr-page-section .our-foundation {
    padding: 40px 0;
  }

  .csr-page-section .about-hero {
    padding: 140px 0px 133px 0px;
    scroll-margin-top: 92px;
    overflow: clip;
    position: relative;
    overflow-y: visible;
  }

  .csr-page-section .about-hero-element-1 {
    display: none;
  }

  .csr-page-section .about-hero-element {
    display: none;
  }

  .csr-page-section .about-hero::after {
    position: absolute;
    content: '';
    right: -134px;
    bottom: -86px;
    z-index: 1;
    background: url(../images/explore-features-bottom.png) no-repeat;
    width: 268px;
    height: 209px;
  }

  .cloud-solutions .high-performance {
    padding: 0px 0 0px 0;
  }

  .cloud-solutions .high-performance .heading-text {
    width: 100%;
    margin: 0 auto;
  }

  .cloud-solutions .high-performance .high-performance-box {
    padding: 24px;
    margin-top: .5rem;
  }

  .cloud-solutions .high-performance .high-performance-box img {
    margin-top: 2.5rem;
  }

  .cloud-solutions .why-choose .mar-left,
  .data-engineering .why-choose .mar-left {
    margin-left: 0px;
  }

  .cloud-solutions .why-choose .why-choose-content,
  .data-engineering .why-choose .why-choose-content {
    min-height: 440px;

  }

  .cloud-solutions .high-performance .high-performance-box::before {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: -32px;
    right: -80px;
    width: 68px;
    height: 89px;
    z-index: -1;
  }

  .cloud-solutions .explore-our-solutions .explore-our-solutions-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 32px;
    right: -16px;
    width: 68px;
    height: 89px;
    z-index: -1;
  }

  .cloud-solutions .explore-our-solutions {
    padding: 20px 0 40px 0;
  }

  .cloud-solutions .explore-our-solutions .explore-our-solutions-left-bottom {
    background: url(../images/about-banner-us-bottom-mobile.png) no-repeat;
    width: 71px;
    height: 107px;
    left: -16px;
    bottom: 180px;
  }

  .cloud-solutions .platform-expertise h3 {
    font-size: 24px;
  }

  .cloud-solutions .platform-expertise {
    padding: 24px;
  }

  .devops-analytics .hero .hero-content h1 {
    font-size: 32px;
    width: 100%;

  }

  .devops-analytics .hero .hero-content p {
    width: 100%;
  }

  .devops-analytics .delivering-compliance .delivering-compliance-card {
    padding: 24px;
  }

  .devops-analytics .btn-learn-more {
    padding: 12px 24px;
  }

  .devops-analytics .why-choose::before {
    background: url(../images/devops-analytics-top.png) no-repeat;
    top: 0px;
    left: -32px;
    width: 114px;
    height: 111px;
    transform: scaleX(1);
  }

  .devops-analytics .core-business {
    padding: 10px 0 40px;
  }

  .devops-analytics .why-choose {
    overflow-y: visible;
    overflow: clip;
  }

  .devops-analytics .why-choose::after {
    position: absolute;
    content: '';
    bottom: -80px;
    right: -32px;
    background: url(../images/devops-analytics-bottom.png) no-repeat;
    width: 161px;
    height: 155px;
  }

  .devops-analytics .talent-pipeline {
    padding: 40px 0;
  }

  .devops-analytics .delivering-compliance {
    padding: 40px 0;
  }

  .ai-ml.devops-analytics .why-choose::before {
    display: none;
  }

  .ai-ml.devops-analytics .why-choose::after {
    display: none;
  }

  .ai-ml .why-choose.custom-software .custom-software-top-right {
    top: 16px;
    right: -16px;
  }

  .ai-ml .why-choose.custom-software .custom-software-left-bottom {
    bottom: -50px;
  }

  .web-development .why-choose.custom-software .custom-software-top-right {
    top: 16px;
    right: -16px;
  }

  .data-engineering .why-choose-after {
    display: none;
  }
}

/* Medium (tablets / small laptops) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .cta-section p {
    font-size: 16px;
  }

  .home-page-banner {
    display: none;
  }

  .hero-content-home-page {
    width: 100%;
  }

  .hero-content-home-page p {
    width: 100%;
  }

  .hero {
    padding: 120px 0 0px 0;
  }

  .hero .hero-content h1::after {
    display: none;
  }

  .hero .hero-content h1 {
    text-align: left;
    width: 100%;
  }

  .hero .hero-content {
    margin-bottom: 0px;
    text-align: left;
  }

  .hero .hero-actions {
    flex-direction: inherit;
    gap: 24px;
  }

  .hero .btn-primary {
    padding: 14px 16px;
    font-size: 14px;
    letter-spacing: -0.2px;
  }

  .hero .hero-image {
    margin-top: 0px;
    right: 0px;
    bottom: 32px;
  }

  .award-box {
    border-radius: 40px 40px 0 0;
    padding: 24px 16px;
    display: flex;
    box-sizing: border-box;
    flex: 0 0 100%;
    position: relative !important;
  }

  .award-box img {
    height: 48px;
  }

  .heading-text {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }

  .impact-scale {
    padding: 40px 0;
    background: none;
  }

  .impact-scale .impact-content p {
    margin-bottom: 0;
  }

  .impact-scale .btn-request-call {
    font-size: 16px;
    padding: 12px 12px;
    border-radius: 4px;
    margin-top: 1.5rem;
  }

  .core-business .tab-content p {
    font-size: 16px;
    padding-left: 0px;
  }

  .core-business .tab-content h3 {
    font-size: 24px;
    padding-left: 0px;
  }

  .core-business .tab-content .btn-learn-more {
    margin: 0px;
  }

  .core-business .tab-content {
    border-radius: 24px;
    padding: 24px;
    margin-top: 0px;
    background: #F8FCFF none;
  }

  .talent .talent-card {
    padding: 24px;
  }

  .talent .talent-card h4 {
    font-size: 24px;
  }

  .talent p {
    font-size: 16px;
  }

  .why-choose .why-choose-content {
    min-height: 580px;
    padding: 40px 24px;
  }

  .why-choose .why-choose-content p {
    font-size: 16px;
  }

  .why-choose .why-choose-content h2 {
    font-size: 24px;
  }

  .why-choose .why-choose-content h2 span {
    font-size: 48px;
  }

  .why-choose-content.align-items-center {
    align-items: start !important;
  }

  footer {
    background: url(../images/footer-bg.png) no-repeat bottom right;
  }

  footer .footer-links {
    margin-bottom: 0px;
  }

  .why-choose .why-choose-card {
    padding: 24px;
  }

  .talent {
    padding: 40px 0;
  }

  .organisation-logo {
    padding: 40px 0 0;
  }

  .tabs {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 32px;
  }

  .cta-section {
    padding: 40px 0 0px 0;
  }

  .cta-section .cta-banner {
    position: inherit;
    bottom: 0px;
    right: 0px;
  }

  .cta-section .cta-banner img {
    width: 95%;
    margin: 0 auto;
  }

  .cta-section .cta-content {
    min-height: auto;
    margin-bottom: 32px;
  }

  footer .footer-top {
    padding-top: 40px;
  }

  .tabs .tabs-header {
    margin-bottom: 0px;
  }

  .tabs .tab-content .content-area h3 {
    margin-bottom: 16px;
  }

  .success-stories .success-stories-elements {
    display: none;
  }

  .success-stories {
    padding: 40px 0;
    background: #FFFAFA url(../images/success-stories-bg.png) no-repeat center bottom;
  }

  .success-stories::before {
    display: none;
  }

  .why-choose {
    padding: 40px 0;
  }

  .talent .talent-element {
    display: none;
  }

  .organisation-logo-element {
    display: none;
  }

  .core-business {
    padding: 24px 0 40px 0;
  }

  .core-business .nav {
    width: 100% !important;
    text-align: center;
    margin-bottom: 24px !important;
  }

  .core-business .nav button {
    width: 100%;
  }

  .core-business .tab-content .img-radius {
    margin-top: 24px;
  }

  .impact-scale::before {
    background: url(../images/impact-scale-mobile-bg.png) no-repeat;
    width: 67px;
    height: 147px;
    top: 16px;
    right: 0px;
  }

  .core-business::before {
    display: none;
  }

  .why-choose .why-choose-element {
    top: -40px;
    left: 0px;
    width: 58px;
    height: 104px;
  }

  .about-us .about-hero::before {
    display: none;
  }

  .about-us .our-values .our-values-card {
    width: 100%;
    padding: 24px;

  }

  .about-us .about-hero .hero-content .about-banner-img::after {
    display: none;
  }

  .about-us .technology-humanity .card {
    padding: 32px 24px;
  }

  .about-us .technology-humanity .card h4 {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  .connect-with-us h2 {
    font-size: 32px;
  }

  .connect-with-us {
    padding: 40px 0 170px;
  }

  .connect-with-us::after {
    display: none;
  }

  p {
    margin-bottom: 1.5rem;
  }

  .about-us .technology-humanity .card .founder-img {
    position: inherit;
    bottom: 0px;
  }

  .about-us .technology-humanity .card p:last-child {
    margin-bottom: 0rem;
  }

  .about-us .technology-humanity .card .founder-img img {
    margin: 0px 0px -32px -16px;
  }

  .about-us .founder-desk {
    padding: 40px 0;
    background: none;
  }

  .about-us .founder-desk .card h4 {
    padding-right: 0;
  }

  .about-us .founder-desk .card p {
    padding-right: 0;
  }

  .about-us .founder-desk .card .founder-img {
    position: inherit;
    bottom: 0px;
  }

  .about-us .founder-desk .card {
    padding: 32px 24px 0px;
    background: var(--contrast-color) url(../images/founder-bg.png) no-repeat bottom right;
  }

  .about-us .awards-recognition {
    padding: 0px 0 40px;
  }

  .about-us .awards-recognition::before {
    display: none;
  }

  .about-us .awards-recognition::after {
    display: none;
  }

  .about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-next,
  .about-us .awards-recognition .card .owl-carousel .owl-nav button.owl-prev {
    position: inherit;
  }

  .about-us .akal-work-culture {
    padding: 0px 0 40px;
  }

  .about-us .akal-work-culture .akal-quote-card {
    margin: 40px 0px;
    padding: 24px;
  }

  .about-us .our-mission::before {
    display: none;
  }

  .about-us .our-mission {
    padding: 0px 0;
  }

  .timeline-item {
    padding-bottom: 40px;
  }

  .about-us .csr-commitment-driving {
    padding: 40px 0;
  }

  .about-us .csr-commitment-driving h3 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-us .csr-commitment-driving p {
    margin-bottom: 1rem;
  }

  .about-us .about-hero {
    padding: 120px 0px 0px 0px;
  }

  .about-us .about-hero .hero-content h2 {
    font-size: 28px;
  }

  .about-us .about-hero .hero-content {
    margin-top: 0px;
  }

  .about-us .technology-humanity {
    padding: 40px 0;
  }

  .about-us .our-values {
    padding: 40px 0;
  }

  .about-us .our-values .our-values-card h2 {
    font-size: 180px;
    line-height: 180px;
  }

  .tabs .tabs-element {
    display: none;
  }

  .why-choose.custom-software .custom-software-left-bottom {
    background: url(../images/about-banner-us-bottom-mobile.png) no-repeat;
    width: 71px;
    height: 107px;
  }

  .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    right: 0px;
    top: 132px;
    width: 68px;
    height: 89px;
  }

  .talent .talent-service-top {
    background: url(../images/talent-service-top-bottom-mobile.png) no-repeat;
    right: 0px;
    top: 16px;
    width: 71px;
    height: 107px;
  }

  .talent .talent-service-bottom {
    display: none;
  }

  .public-impact-element {
    display: none;
  }

  .public-impact-box.box-1 {
    padding: 48px 24px;
    background: #110E12 url(../images/public-impact-box-1.png) no-repeat bottom center;
    height: 550px;
    display: flex;
    align-items: start;
  }

  .public-impact-box p {
    width: auto;
  }

  .public-impact-box.box-2 {
    padding: 0px 24px;
  }

  .public-impact-box.box-3 {
    padding: 0px 24px;
  }

  .talent.govt-tech-solutions {
    padding-top: 120px;
  }

  .about-banner img {
    border-radius: 16px;
  }

  .about-banner::before {
    background: url(../images/govt-tech-solutions-banner-us-top-mobile.png) no-repeat;
    top: -24px;
    left: -16px;
    width: 67px;
    height: 99px;
  }

  .about-banner::after {
    background: url(../images/govt-tech-solutions-banner-us-bottom-mobile.png) no-repeat;
    bottom: 0px;
    right: -16px;
    width: 67px;
    height: 94px;
    z-index: -1;
  }

  .about-banner {
    padding-bottom: 40px;
  }

  .contact-us .contact-us-form::before {
    display: none;
  }

  .contact-us .contact-us-form .form-box {
    padding: 24px;

  }

  .contact-us .award .award-box {
    max-width: 100%;
    border-radius: 40px 40px 0 0;
    padding: 24px;
    margin-top: 20px;
    display: flex;
    box-sizing: border-box;
    position: inherit;
  }

  .contact-us .about-hero {
    padding-bottom: 40px;
  }

  .contact-us .connect-with-us p {
    margin-bottom: 2.5rem;
  }

  .contact-us .contact-us-form {
    margin-top: -270px;
  }

  .contact-us .hero-content::after {
    position: absolute;
    content: '';
    background: url(../images/contact-us-mobile.png) no-repeat right bottom !important;
    bottom: -170px;
    right: -75px;
    width: 130px;
    height: 213px;
  }

  .contact-us .about-hero::after {
    display: none;
  }

  .contact-us .hero-content p {
    margin-bottom: 12rem;
  }

  .connect-with-us p {
    width: 100%;
  }

  .contact-us .contact-us-form {
    margin-top: -270px;
  }

  .contact-us .hero-content::after {
    position: absolute;
    content: '';
    background: url(../images/contact-us-mobile.png) no-repeat right bottom !important;
    bottom: -170px;
    right: -16px;
    width: 130px;
    height: 213px;
  }

  .contact-us .about-hero::after {
    display: none;
  }

  .contact-us .hero-content p {
    margin-bottom: 12rem;
  }

  .connect-with-us p {
    width: 100%;
  }

  .case-studies .detailed-case-studies-box .detailed-case-studies-heading {
    padding: 24px;
  }

  .case-studies .about-hero {
    padding-bottom: 0px;
  }

  .case-studies .case-studies-owlcarousel .owl-item.active.center .case-studies-owlcarousel-box {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .case-studies .case-studies-top-element {
    top: 95px;
    left: -16px;
    width: 67px;
    height: 99px;
  }

  .case-studies .about-hero {
    padding-top: 150px;
  }

  .case-studies .case-studies-bottom-element {
    right: -16px;
    bottom: -24px;
    z-index: 1;
  }

  .connect-with-us p {
    margin-bottom: 2rem;
  }

  .why-choose .custom-software-card {
    padding: 24px;
  }

  .talent-bridge .why-talent-bridge .before {
    display: none;
  }

  .talent-bridge .why-talent-bridge {
    padding: 40px 0;
  }

  .talent-bridge .transforming-talent {
    padding: 40px 0px 40px;
  }

  .talent-bridge .challenge .challenge-box-card {
    padding: 24px;
  }

  .talent-bridge .challenge::after {
    display: none;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box {
    padding: 24px 24px 0px;
    min-height: 420px;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box::before {
    display: none;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box h2 {
    font-size: 28px;
  }

  .talent-bridge .transforming-talent .akal-japanese-academy-box .jp-watermark {
    bottom: -12px;
    right: -40px;
    font-size: 110px;
  }

  .talent-bridge .transforming-talent .hr-academy-box {
    padding: 24px 24px 0px;
    min-height: 540px;
  }

  .talent-bridge .transforming-talent .hr-academy-box::before {
    display: none;
  }

  .talent-bridge .transforming-talent .hr-academy-box h2 {
    font-size: 28px;
  }

  .talent-bridge .transforming-talent .hr-academy-box .jp-watermark {
    bottom: -12px;
    font-size: 80px;
  }

  .talent-bridge .why-choose.custom-software .custom-software-left-bottom {
    bottom: 8px;
    left: 0px;
  }

  .talent-bridge .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 80px;
    right: 0px;
    width: 68px;
    height: 89px;
  }

  .talent-bridge .challenge::before {
    position: absolute;
    content: "";
    left: 0px;
    bottom: -60px;
    width: 58px;
    height: 104px;
    z-index: -1;
    opacity: 0.6;
    background: url(../images/core-business-top-mobile.png) no-repeat;
  }

  .talent-bridge .challenge {
    padding: 40px 0 0;
  }

  .talent-bridge .about-hero .about-banner-img::before {
    display: none;
  }

  .talent-bridge .about-hero .about-banner-img::after {
    display: none;
  }

  .workforce-management .delivering-compliance .delivering-compliance-card {
    padding: 24px 24px 0px;
    background: #F8FCFF url(../images/delivering-compliance-card-img.png) no-repeat center bottom;
  }

  .workforce-management .delivering-compliance .delivering-compliance-card h3 {
    font-size: 28px;
  }

  .workforce-management .talent-pipeline {
    padding: 40px 0;
  }

  .workforce-management .why-choose .custom-software-card h3 {
    font-size: 28px;
  }

  .workforce-management .transforming-talent {
    padding: 40px 0px;
  }

  .workforce-management .why-choose.custom-software .custom-software-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 10px;
    right: 0px;
    width: 68px;
    height: 89px;
  }

  .workforce-management .about-hero .about-banner-img {
    position: relative;
  }

  .workforce-management .about-hero .about-banner-img::before {
    display: block;
    position: absolute;
    content: '';
    width: 58px;
    height: 104px;
    top: -32px;
    left: -76px;
    background: url(../images/core-business-top-mobile.png) no-repeat;
    z-index: -1;
  }

  .workforce-management .about-hero .about-banner-img::after {
    display: block;
    position: absolute;
    content: '';
    width: 67px;
    height: 147px;
    bottom: -70px;
    right: -76px;
    z-index: -1;
    background: url(../images/impact-scale-mobile-bg.png) no-repeat;
  }

  .hr-cloud .about-hero .top-element {
    display: none;
  }

  .hr-cloud .hero .hero-content p {
    width: 100%;
  }

  .hr-cloud .about-hero {
    padding-top: 140px;
  }

  .hr-cloud .tankhapay-solution {
    padding: 40px 0 0;
    background: url(../images/tankhapay-solution-bg.png) no-repeat center bottom;
  }

  .hr-cloud .tankhapay-solution .image-container::after {
    bottom: 0px;
    left: -190px;
  }

  .hr-cloud .impact-scale .impact-content {
    padding: 24px;

  }

  .impact-scale .impact-content .impact-number {
    font-size: 28px;
  }

  .hr-cloud .explore-features .explore-features-card h4 {
    font-size: 28px;
  }

  .hr-cloud .why-choose {
    padding: 40px 0;
  }

  .hr-cloud .explore-features .explore-features-card {
    padding: 24px;
  }

  .hr-cloud .about-hero .bottom-element {
    right: -40px;
  }

  .hr-cloud .explore-features .element-top {
    right: -140px;
    top: 24px;
  }

  .hr-cloud .explore-features .element-bottom {
    left: -140px;
    bottom: -32px;
  }

  .csr-page-section .our-foundation .impact-content>p {
    font-size: 16px;
    margin-bottom: 0rem;
  }

  .csr-page-section .our-foundation {
    padding: 40px 0;
  }

  .csr-page-section .about-hero {
    padding: 140px 0px 133px 0px;
    scroll-margin-top: 92px;
    overflow: clip;
    position: relative;
    overflow-y: visible;
  }

  .csr-page-section .about-hero-element-1 {
    display: none;
  }

  .csr-page-section .about-hero-element {
    display: none;
  }

  .csr-page-section .about-hero::after {
    position: absolute;
    content: '';
    right: -134px;
    bottom: -86px;
    z-index: 1;
    background: url(../images/explore-features-bottom.png) no-repeat;
    width: 268px;
    height: 209px;
  }

  .cloud-solutions .high-performance {
    padding: 0px 0 0px 0;
  }

  .cloud-solutions .high-performance .heading-text {
    width: 100%;
    margin: 0 auto;
  }

  .cloud-solutions .high-performance .high-performance-box {
    padding: 24px;
    margin-top: .5rem;
  }

  .cloud-solutions .high-performance .high-performance-box img {
    margin-top: 2.5rem;
  }

  .cloud-solutions .why-choose .mar-left,
  .data-engineering .why-choose .mar-left {
    margin-left: 0px;
  }

  .cloud-solutions .why-choose .why-choose-content,
  .data-engineering .why-choose .why-choose-content {
    min-height: 440px;

  }

  .cloud-solutions .high-performance .high-performance-box::before {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: -32px;
    right: -80px;
    width: 68px;
    height: 89px;
    z-index: -1;
  }

  .cloud-solutions .explore-our-solutions .explore-our-solutions-top-right {
    background: url(../images/about-banner-us-top-mobile.png) no-repeat;
    top: 32px;
    right: -16px;
    width: 68px;
    height: 89px;
    z-index: -1;
  }

  .cloud-solutions .explore-our-solutions {
    padding: 20px 0 40px 0;
  }

  .cloud-solutions .explore-our-solutions .explore-our-solutions-left-bottom {
    background: url(../images/about-banner-us-bottom-mobile.png) no-repeat;
    width: 71px;
    height: 107px;
    left: -16px;
    bottom: 180px;
  }

  .cloud-solutions .platform-expertise h3 {
    font-size: 24px;
  }

  .cloud-solutions .platform-expertise {
    padding: 24px;
  }

  .devops-analytics .hero .hero-content h1 {
    font-size: 32px;
    width: 100%;

  }

  .devops-analytics .hero .hero-content p {
    width: 100%;
  }

  .devops-analytics .delivering-compliance .delivering-compliance-card {
    padding: 24px;
  }

  .devops-analytics .btn-learn-more {
    padding: 12px 24px;
  }

  .devops-analytics .why-choose::before {
    background: url(../images/devops-analytics-top.png) no-repeat;
    top: 0px;
    left: -32px;
    width: 114px;
    height: 111px;
    transform: scaleX(1);
  }

  .devops-analytics .core-business {
    padding: 10px 0 40px;
  }

  .devops-analytics .why-choose {
    overflow-y: visible;
    overflow: clip;
  }

  .devops-analytics .why-choose::after {
    position: absolute;
    content: '';
    bottom: -80px;
    right: -32px;
    background: url(../images/devops-analytics-bottom.png) no-repeat;
    width: 161px;
    height: 155px;
  }

  .devops-analytics .talent-pipeline {
    padding: 40px 0;
  }

  .devops-analytics .delivering-compliance {
    padding: 40px 0;
  }

  .ai-ml.devops-analytics .why-choose::before {
    display: none;
  }

  .ai-ml.devops-analytics .why-choose::after {
    display: none;
  }

  .ai-ml .why-choose.custom-software .custom-software-top-right {
    top: 16px;
    right: -16px;
  }

  .ai-ml .why-choose.custom-software .custom-software-left-bottom {
    bottom: -50px;
  }

  .web-development .why-choose.custom-software .custom-software-top-right {
    top: 16px;
    right: -16px;
  }

  .data-engineering .why-choose-after {
    display: none;
  }
}

/* Large (desktops) 
@media (min-width: 992px) and (max-width: 1199.98px) {}
*/

/* Extra large (large screens) 
@media (min-width: 1200px) {}
*/

/* ===== Swiper image zoom ===== */
.swiper-slide-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transform: translateZ(0);
}

.swiper-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  will-change: transform;
}

.swiper-slide-img:hover img {
  transform: scale(1.1);
}

/* Tabs */
.slider-tabs {
  justify-content: center;
  border-bottom: none;
}

/* Slider container */
.slider-content {
  overflow: hidden;

}

/* Track */
.slider-track {
  display: flex;
  transition: .6s cubic-bezier(.4, 0, .2, 1);
}

/* Each slide */
.slide {
  width: 100%;
  flex-shrink: 0;
}

.talent-img {
  position: relative;
  overflow: hidden;
  display: inline-block;
  /* 🔥 important for responsive images */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.detailed-case-studies-image-container {
  position: relative;
  overflow: hidden;

}

.talent-img img,
.detailed-case-studies-image-container img {
  display: block;
  /* remove inline gap */
  width: 100%;
  height: auto;
  /* let image keep ratio */
  transition: transform .4s ease;
  will-change: transform;

}

.talent-card:hover .talent-img img,
.detailed-case-studies-box:hover .detailed-case-studies-image-container img {
  transform: scale(1.1);
}

.technology-stack-logo-carousel.owl-carousel .owl-item img {
  display: block;
  width: auto;
}

.data-engineering .why-choose {
  position: relative;
}

.data-engineering .why-choose-after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -90px;
}

.awards-recognition-owl-carousel.owl-carousel .owl-item img,
.organisation-logo-carousel.owl-carousel .owl-item img {
  display: block;
  width: auto;
}

#bannerImg {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up {
  animation: fadeUp 0.4s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.our-philosophy-carousel.owl-theme .owl-dots .owl-dot.active span,
.our-philosophy-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #004899;
}

.our-philosophy-carousel.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: -16px;
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  margin: 0 auto 0 auto;
  bottom: 0px;
}

.our-philosophy-carousel.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: #ffffff;
}

.talent-bridge-initiative.owl-carousel .owl-nav button.owl-next,
.talent-bridge-initiative.owl-carousel .owl-nav button.owl-prev,
.talent-bridge-initiative.owl-carousel button.owl-dot {

  color: inherit;
  background-color: #FFF;
  border: none;
  padding: 0 !important;
  font-size: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.talent-bridge-initiative.owl-theme .owl-nav [class*=owl-]:hover {
  background: #004899;
  color: #FFF;
  text-decoration: none;
}