/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */

*{
  font-family: 'Barlow', sans-serif;
}
:root {
    --default-font: 'Roboto', sans-serif;
    --heading-font: 'Barlow', sans-serif;
    --nav-font: "source_sans_pro_regular", Helvetica, Arial, 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-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0a2366; /* 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: #212529;  /* The default color of the main navmenu links */
    --nav-hover-color: #0d83fd; /* 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: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0d83fd; /* 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-image: url(../img/service_bg_18.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .font-bold-head{
    font-weight: 700;
  }
  .para-20{
    font-size: 20px;
  }
  
  .dark-background {
    --background-color: #0d83fd;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #409dfd;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    font-family: var(--default-font);
    letter-spacing:0px;
  }
  footer{
    letter-spacing:1px !important;
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none !important;
    transition: 0.3s;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }
  
  /* PHP Email Form Messages
  ------------------------------*/
  .php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  .bg-blue{
    background-color: #032b50 !important;
  }
  .numbers{
    color: #cbd3db !important;
  }
  .php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
  }
  .numbers-text{
    color: #d4e8ff !important;
  }
  
  .php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
  }
  
  .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
  }
  
  @keyframes php-email-form-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  .header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .header-container {
    background:#fff;
    border-radius: 50px;
    padding: 5px 25px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }
  
  /*.scrolled .header .header-container {
    background: color-mix(in srgb, #142155, transparent 5%);
  }*/
  
  .header .logo {
    line-height: 1;
    padding-left: 5px;
  }
  
  .header .logo img {
    max-height: 40px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 24px;
    margin: 0;
    font-weight: 500;
    color: var(--heading-color);
  }
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: #0e1c42;
    font-size: 17px;
    padding: 8px 20px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 500;
  }
  
  .header .btn-getstarted:hover,
  .header .btn-getstarted:focus:hover {
    color: var(--contrast-color) !important;
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  @media (max-width: 1200px) {
    .header {
      padding-top: 10px;
    }
  
    .header .header-container {
      margin-left: 10px;
      margin-right: 10px;
      padding: 10px 5px 10px 15px;
    }
  
    .header .logo {
      order: 1;
    }
  
    .header .btn-getstarted {
      order: 2;
      margin: 0 10px 0 0;
      padding: 6px 15px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Navmenu - Desktop */
  @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 a,
    .navmenu a:focus {
      color: #000;
      padding: 18px 15px;
      font-size: 16px;
      font-family: var(--nav-font);
      font-weight: 600;
      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;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: #e94703;
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: var(--nav-dropdown-background-color);
      position: absolute;
      visibility: hidden;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
      width: 700%;
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      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: #fff;
    }
  
    .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;
    }
  }
  
  /* Navmenu - Mobile */
  @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);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .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);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      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;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Footer
  --------------------------------------------------------------*/
  .footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
  }
  
  .footer .footer-top {
    padding-top: 50px;
  }
  
  .footer .footer-about .logo {
    line-height: 1;
  }
  
  .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: 18px;
    font-weight: 600;
    line-height: 1.5;
  }
  .sitename{
    color: #111111 !important;
    margin-bottom: 25px;
  }
    .social-links a{
    color: #000 !important;
  }
  .footer p{
    color: #e0e0e0 !important;
  }
  
  .footer .footer-about p {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--heading-font);
  }
  
  .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, #333333, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
    margin-right: 8px;
  }
  
  .footer .social-links a:hover {
    color: #000000;
    border-color: #000000;
  }
  
  .footer h4 {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 40px;
  }
  
  .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: 18px;
    font-weight: 500;
  }
  
  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }
  
  .footer .footer-links ul a {
    color:#4e4e4e;
    display: inline-block;
    line-height: 1;
  }
  
  .footer .footer-links ul a:hover {
    color: #000000;
  }
  div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm){
    background-color:#03215f !important;
  }
  div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover{
    background-color:#03215f !important;
  }
  
  .footer .footer-contact p {
    margin-bottom: 10px;
  }
  
  .footer .copyright {
    padding: 25px 0;
  }
  
  .footer .copyright p {
    margin-bottom: 0;
  }
  
  .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: 44px;
    height: 44px;
    border-radius: 50px;
    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;
    bottom: 15px;
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Page Titles & Breadcrumbs
  --------------------------------------------------------------*/
  .page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 170px 0 80px 0;
    text-align: center;
    position: relative;
  }
  
  .page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
  }
  
  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
  }
  
  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
  }
  
  /*--------------------------------------------------------------
  # Global Sections
  --------------------------------------------------------------*/
  section,
  .section {
    color: var(--default-color);
    /*background-color: var(--background-color);*/
    padding: 20px 0;
    scroll-margin-top: 90px;
    overflow: clip;
  }
  
  @media (max-width: 1199px) {
  
    section,
    .section {
      scroll-margin-top: 66px;
    }
  }
  
  /*--------------------------------------------------------------
  # Global Section Titles
  --------------------------------------------------------------*/
  
  
  .section-title h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .section-title p {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  .hero {
    position: relative;
    padding-top: 160px;
    background: linear-gradient(135deg, color-mix(in srgb, #0045ff, transparent 95%) 50%, color-mix(in srgb, #101b43, transparent 98%) 25%, transparent 50%);
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(#ff5700), transparent 95%), transparent 40%);
    pointer-events: none;
  }
  
  .hero .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero .hero-content h1 .accent-text {
    color: var(--accent-color);
    font-size: 30px;
  }
  
  @media (max-width: 992px) {
    .hero .hero-content {
      text-align: center;
      margin-bottom: 3rem;
    }
  
    .hero .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero .hero-content .hero-buttons {
      justify-content: center;
    }
  }
  
  @media (max-width: 575px) {
    .hero .hero-content h1 {
      font-size: 2rem;
    }
  }
  
  .hero .company-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 50px;
    color: var(--accent-color);
    font-weight: 500;
  }
  
  .hero .company-badge i {
    font-size: 1.25rem;
  }
  
  .hero .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .hero .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 20%);
    border-color: color-mix(in srgb, var(--accent-color), black 20%);
  }
  
  .hero .btn-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .hero .btn-link:hover {
    color: var(--accent-color);
  }
  
  .hero .btn-link i {
    font-size: 1.5rem;
    vertical-align: middle;
  }
  
  .hero .hero-image {
    position: relative;
    text-align: center;
    z-index: 1;
  }
  
  .hero .hero-image img {
    max-width: 100%;
    height: auto;
  }
  
  .hero .customers-badge {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background-color: var(--surface-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    animation: float-badge 3s ease-in-out infinite;
    will-change: transform;
  }
  
  .hero .customers-badge .customer-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .hero .customers-badge .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--surface-color);
    margin-left: -8px;
  }
  
  .hero .customers-badge .avatar:first-child {
    margin-left: 0;
  }
  
  .hero .customers-badge .avatar.more {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  .hero .customers-badge p {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  @media (max-width: 992px) {
    .hero .customers-badge {
      position: static;
      margin: 1rem auto;
      max-width: 250px;
    }
  }
  
  .hero .stats-row {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    background-color: var(--surface-color);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
  }
  
  .hero .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
  }
  
  .hero .stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, #e6d7d0, transparent 92%);
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .hero .stat-item .stat-icon i {
    font-size: 1.5rem;
    color: #f5a17c;
  }
  
  .hero .stat-item:hover .stat-icon {
    background-color: #ea5e20;
  }
  
  .hero .stat-item:hover .stat-icon i {
    color: var(--contrast-color);
  }
  
  .hero .stat-item .stat-content {
    flex-grow: 1;
  }
  
  .hero .stat-item .stat-content h4 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }
  
  .hero .stat-item .stat-content p {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
  }
  
  @media (max-width: 575px) {
    .hero .stat-item {
      padding: 1.5rem;
    }
  }
  
  @keyframes float-badge {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-10px);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  /*--------------------------------------------------------------
  # About Section
  --------------------------------------------------------------*/
  .about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: #123454;
  }
  
  @media (max-width: 992px) {
    .about .about-title {
      font-size: 2rem;
    }
  }
  

  
  .about .feature-list-wrapper {
    margin-bottom: 2rem;
  }
  
  .about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .about .feature-list li {
    display: flex
;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
    font-weight: 500;
  }
  
  .about .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
  }
  
  .about .profile .profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .about .profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
  }
  
  .about .profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
  }
  
  .about .contact-info {
    padding: 1rem 1.5rem;
    background-color: var(--surface-color);
    border-radius: 0.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  }
  
  .about .contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
  }
  
  .about .contact-info .contact-label {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.875rem;
    margin: 0;
  }
  
  .about .contact-info .contact-number {
    font-weight: 600;
    margin: 0;
  }
  
  .about .image-wrapper {
    position: relative;
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper {
      padding-left: 0;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper .images {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper .main-image {
      margin-left: 0;
    }
  }
  
  .about .image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid var(--surface-color);
  }
  
  @media (max-width: 992px) {
    .about .image-wrapper .small-image {
      position: static;
      width: 100%;
      margin: 0 auto;
      border: 0;
    }
  }
  
  .about .image-wrapper .experience-badge {
    position: absolute;
    bottom: -1%;
    right: -3%;
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
    
  }


  
  @media (max-width: 992px) {
    .about .image-wrapper .experience-badge {
      position: static;
      width: fit-content;
      margin: 0 auto;
    }
  }
  
  .about .image-wrapper .experience-badge h3 {
    color: var(--contrast-color);
    font-size: 2.5rem;
    margin: 0;
    line-height: 0.5;
  }
  
  .about .image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
  }
  
  .about .image-wrapper .experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
  }
  
  @keyframes experience-float {
    0% {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-10px);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  /*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/
  .features .nav-tabs {
    border: 0;
    background: #e8e8e8;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
    padding: 13px;
    width: auto;
  }
  
  .features .nav-item {
    margin: 0;
    padding: 0 5px 0 0;
  }
  
  .features .nav-item:last-child {
    padding-right: 0;
  }
  
  .features .nav-link {
    background-color: none;
    color: var(--heading-color);
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0;
  }
  
  @media (max-width: 468px) {
    .features .nav-link {
      padding: 8px 20px;
    }
  }
  
  .features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
  }
  
  .features .nav-link h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
  }
  
  .features .nav-link:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  .features .nav-link:hover h4 {
    color: var(--accent-color);
  }
  
  .features .nav-link.active {
    background: linear-gradient(37deg, #ff9567 55%, #93401b);
  }
  
  .features .nav-link.active h4 {
    color: #000000;
  }
  
  .features .tab-pane h3 {
    color: #00407a;
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .features .tab-pane h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
  }
  
  .features .tab-pane ul {
    list-style: none;
    padding: 0;
  }
  
  .features .tab-pane ul li {
    padding-top: 10px;
  }
  
  .features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #ea5e20;
  }
  
  .features .tab-pane p:last-child {
    margin-bottom: 0;
  }
  .default-call-to-action{
    font-size: 30px;
  }
  
  /*--------------------------------------------------------------
  # Features Cards Section
  --------------------------------------------------------------*/
  .features-cards {
    --default-color: #555;
    --heading-color: #333;
  }
  
  .features-cards .feature-box {
    height: 100%;
    padding: 25px 30px;
    border-radius: 10px;
  }
  
  .features-cards .feature-box i {
    font-size: 44px;
    display: inline-block;
    line-height: 0;
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .features-cards .feature-box h4 {
    font-size: 25px;
    font-weight: 700;
    margin: 0 0 10px 0;
  }
  
  .features-cards .feature-box p {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 16px;
    color: #000000;
    letter-spacing: 0.5px;
    line-height: 35px;
    font-weight: 500;
    text-align: justify;
  }
  .home-page-card{
    color: #000000 !important;
  }
  .features-cards .feature-box.orange {
    background: linear-gradient(37deg, #f7e8e2 55%, #f8f9fa);
  }
  
  .features-cards .feature-box.orange i {
    color: #ff4e00;
  }
  
  .features-cards .feature-box.blue {
    background: linear-gradient(37deg, #d5ebfff0 55%, #e6f5ff);
  }
  
  .features-cards .feature-box.blue i {
    color: #0076ff;
  }
  
  .features-cards .feature-box.green {
    background: linear-gradient(37deg, #e4ffe3f0 55%, #ebffee);
  }
  
  .features-cards .feature-box.green i {
    color: #0c884c;
  }
  
  .features-cards .feature-box.red {
    background-color: #fdeded;
  }
  
  .features-cards .feature-box.red i {
    color: #f28484;
  }
  
  /*--------------------------------------------------------------
  # Features 2 Section
  --------------------------------------------------------------*/
  .features-2 .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  }
  
  .features-2 .feature-item .feature-icon i {
    font-size: 24px;
    color: var(--accent-color);
  }
  
  .features-2 .feature-item .feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .features-2 .feature-item .feature-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 15px;
    margin-bottom: 0;
  }
  
  .features-2 .phone-mockup {
    position: relative;
    padding: 30px 0;
  }
  
  .features-2 .phone-mockup img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  }
  
  @media (max-width: 991.98px) {
    .features-2 .feature-item {
      text-align: center !important;
      margin-bottom: 2rem;
    }
  
    .features-2 .feature-item .d-flex {
      flex-direction: column;
      text-align: center;
      justify-content: center !important;
    }
  
    .features-2 .phone-mockup {
      margin: 3rem 0;
    }
  }
  
  /*--------------------------------------------------------------
  # Call To Action Section
  --------------------------------------------------------------*/
  .call-to-action .container {
    background: #013463;
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    padding: 4rem 2rem;
  }
  
  .call-to-action .content h2,
  .call-to-action .content p {
    color: var(--contrast-color);
    position: relative;
    z-index: 2;
    line-height: 42px;
  }
  
  .call-to-action .btn-cta {
    background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
    color: var(--contrast-color);
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--contrast-color);
    position: relative;
    z-index: 2;
  }
  
  .call-to-action .btn-cta:hover {
    background-color: var(--contrast-color);
    color: var(--accent-color);
  }
  
  .call-to-action .shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }
  
  .call-to-action .shape svg {
    width: 100%;
    height: 100%;
  }
  
  .call-to-action .shape svg path {
    fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
  }
  
  .call-to-action .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    opacity: 0.1;
    transform: rotate(45deg);
    animation: shapes-float 3s ease-in-out infinite;
  }
  .numbers-section .shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
  }
  .numbers-section .shape-1 {
   width: 200px;
      height: 30px;
      top: -9px;
      right: -50px;
      opacity: 0.1;
      transform: rotate(45deg);
      animation: shapes-float 3s ease-in-out infinite;
  }
  .numbers-section .dots {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: var(--contrast-color);
  }
  .call-to-action .dots-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    left: 10%;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: shapes-float 4s ease-in-out infinite;
  }
  .numbers-section .dots-1 {
      width: 200px;
      height: 200px;
      top: -30px;
      left: 10%;
      opacity: 0.1;
      transform: rotate(15deg);
      animation: shapes-float 4s ease-in-out infinite;
  }
  .numbers-section .dots-2 {
    width: 200px;
    height: 200px;
    bottom: 20px;
    right: 15%;
    opacity: 0.15;
    transform: rotate(-10deg);
    animation: shapes-float 4s ease-in-out infinite;
  }
  
  
  .call-to-action .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    opacity: 0.15;
    transform: rotate(-15deg);
    animation: shapes-float 4s ease-in-out infinite;
  }
  
  .call-to-action .shape-3 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    opacity: 0.08;
    transform: rotate(15deg);
  }
  
  .call-to-action .dots {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    color: var(--contrast-color);
  }
  
  .call-to-action .dots svg {
    width: 100%;
    height: 100%;
  }
  
  .call-to-action .dots-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    left: 10%;
    opacity: 0.1;
    transform: rotate(15deg);
    animation: shapes-float 4s ease-in-out infinite;
  }
  
  .call-to-action .dots-2 {
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 15%;
    opacity: 0.15;
    transform: rotate(-10deg);
  }
  
  @keyframes shapes-float {
  
    0%,
    100% {
      transform: scale(0.8) rotate(45deg) translateY(0);
    }
  
    50% {
      transform: scale(0.8) rotate(45deg) translateY(-20px);
    }
  }
  
  @media (max-width: 992px) {
    .call-to-action .container {
      padding: 3rem 1.5rem;
    }
  
    .call-to-action .shape-1 {
      width: 200px;
      height: 200px;
    }
  
    .call-to-action .shape-2 {
      width: 150px;
      height: 150px;
    }
  
    .call-to-action .shape-3 {
      width: 100px;
      height: 100px;
    }
  
    .call-to-action .dots-1 {
      width: 150px;
      height: 150px;
    }
  
    .call-to-action .dots-2 {
      width: 120px;
      height: 120px;
    }
  
    .call-to-action .dots-3 {
      width: 80px;
      height: 80px;
    }
  }
  
  @media (max-width: 575px) {
    .call-to-action .container {
      border-radius: 0;
    }
  }
  
  /*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
  .clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
  }
  
  .clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
  }
  
  .clients .swiper-wrapper {
    height: auto;
  }
  
  .clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 1;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Testimonials Section
  --------------------------------------------------------------*/
  .testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    position: relative;
    height: 100%;
  }
  
  .testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
  }
  
  .testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
  }
  
  .testimonials .testimonial-item h4 {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
  }
  
  .testimonials .testimonial-item .stars {
    margin: 10px 0;
  }
  
  .testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
  }
  
  /*--------------------------------------------------------------
  # Stats Section
  --------------------------------------------------------------*/
  .stats .stats-item {
    padding: 30px;
    width: 100%;
  }
  
  .stats .stats-item span {
    color: var(--heading-color);
    font-size: 48px;
    display: block;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .stats .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 500;
  }
  
  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .service-card {
    height: 100%;
    padding: 30px;
    background: var(--surface-color);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  
  .services .service-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    
  }
  
  .services .service-card:hover .icon {
    background: #e94703bd;
    color: var(--contrast-color);
  }
  
  .services .service-card:hover .read-more {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
  }
  
  .services .service-card .icon {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    background: linear-gradient(225deg, #FFC656 0%, #F16063 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    font-size: 28px;
    transition: all 0.3s ease;
    line-height: 1;
  }
  
  .services .service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.2px;
    line-height: 31px;
  }
  
  .services .service-card p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
  }
  
  .services .service-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .services .service-card .read-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
  }
  
  .services .service-card .read-more:hover i {
    transform: translateX(5px);
  }
  
  /*--------------------------------------------------------------
  # Pricing Section
  --------------------------------------------------------------*/
  .pricing .pricing-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .pricing .pricing-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .pricing .pricing-card.popular {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular h3,
  .pricing .pricing-card.popular h4 {
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular .price .currency,
  .pricing .pricing-card.popular .price .amount,
  .pricing .pricing-card.popular .price .period {
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular .features-list li {
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular .features-list li i {
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card.popular .btn-light {
    background: var(--contrast-color);
    color: var(--accent-color);
  }
  
  .pricing .pricing-card.popular .btn-light:hover {
    background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  }
  
  .pricing .pricing-card .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--contrast-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
  }
  
  .pricing .pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .pricing .pricing-card .price {
    margin-bottom: 1.5rem;
  }
  
  .pricing .pricing-card .price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    line-height: 1;
  }
  
  .pricing .pricing-card .price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .pricing .pricing-card .price .period {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .pricing .pricing-card .description {
    margin-bottom: 2rem;
    font-size: 0.975rem;
  }
  
  .pricing .pricing-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  
  .pricing .pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  
  .pricing .pricing-card .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .pricing .pricing-card .features-list li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
  }
  
  .pricing .pricing-card .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    border-radius: 50px;
  }
  
  .pricing .pricing-card .btn.btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--contrast-color);
  }
  
  .pricing .pricing-card .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
  }
  
  /*--------------------------------------------------------------
  # Faq Section
  --------------------------------------------------------------*/
  .faq .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
  }
  
  .faq .faq-description {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 2rem;
  }
  
  .faq .faq-arrow {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
  }
  
  .faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  
  .faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
  }
  
  .faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
  }
  
  .faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-active h3 {
    color: var(--accent-color);
  }
  
  .faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
  }
  
  .faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Call To Action 2 Section
  --------------------------------------------------------------*/
  .call-to-action-2 {
    padding: 80px 0;
  }
  
  .call-to-action-2 .container {
    position: relative;
    z-index: 3;
  }
  
  .call-to-action-2 h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color);
  }
  
  .call-to-action-2 p {
    color: var(--default-color);
  }
  
  .call-to-action-2 .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
    color: var(--contrast-color);
  }
  

  
  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact .info-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
  }
  
  .contact .info-box h3 {
    color: var(--contrast-color);
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  @media (max-width: 767.98px) {
    .contact .info-box h3 {
      font-size: 1.75rem;
    }
  }
  
  .contact .info-box p {
    opacity: 0.8;
    margin-bottom: 2rem;
  }
  
  .contact .info-box a {
    color: var(--contrast-color);
  }
  
  @media (max-width: 992px) {
    .contact .info-box {
      padding: 1.5rem;
    }
  }
  
  .contact .info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact .info-item:last-child {
    margin-bottom: 0;
  }
  
  .contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
  }
  
  .contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
  }
  
  .contact .info-item:hover .icon-box {
    background-color: color-mix(in srgb, var(--contrast-color), transparent 70%);
  }
  
  .contact .info-item .content h4 {
    color: var(--contrast-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .contact .info-item .content p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
  }
  
  .contact .info-item .content p:last-child {
    margin-bottom: 0;
  }
  
  .contact .contact-form {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 1rem;
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  }
  
  @media (max-width: 992px) {
    .contact .contact-form {
      padding: 1.5rem;
    }
  }
  
  .contact .contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  @media (max-width: 768px) {
    .contact .contact-form h3 {
      font-size: 1.75rem;
    }
  }
  
  .contact .contact-form p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2rem;
  }
  
  .contact .contact-form .form-control,
  .contact .contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    background-color: color-mix(in srgb, var(--surface-color) 90%, white 5%);
    color: var(--default-color);
  }
  
  .contact .contact-form .form-control:focus,
  .contact .contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
  }
  
  .contact .contact-form .form-control::placeholder,
  .contact .contact-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .contact .contact-form .btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
  }
  
  .contact .contact-form .btn i {
    font-size: 1.25rem;
  }
  

  
  /*--------------------------------------------------------------
  # Service Details Section
  --------------------------------------------------------------*/
  .service-details .service-box {
    background-color: var(--surface-color);
    padding: 20px;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-details .service-box+.service-box {
    margin-top: 30px;
  }
  
  .service-details .service-box h4 {
    font-size: 20px;
    font-weight: 700;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  
  .service-details .services-list {
    background-color: var(--surface-color);
  }
  
  .service-details .services-list a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-top: 15px;
    transition: 0.3s;
  }
  
  .service-details .services-list a:first-child {
    margin-top: 0;
  }
  
  .service-details .services-list a i {
    font-size: 16px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  
  .service-details .services-list a.active {
    color: var(--contrast-color);
    background-color: var(--accent-color);
  }
  
  .service-details .services-list a.active i {
    color: var(--contrast-color);
  }
  
  .service-details .services-list a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    color: var(--accent-color);
  }
  
  .service-details .download-catalog a {
    color: var(--default-color);
    display: flex;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .service-details .download-catalog a:first-child {
    border-top: 0;
    padding-top: 0;
  }
  
  .service-details .download-catalog a:last-child {
    padding-bottom: 0;
  }
  
  .service-details .download-catalog a i {
    font-size: 24px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  
  .service-details .download-catalog a:hover {
    color: var(--accent-color);
  }
  
  .service-details .help-box {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-top: 30px;
    padding: 30px 15px;
  }
  
  .service-details .help-box .help-icon {
    font-size: 48px;
  }
  
  .service-details .help-box h4,
  .service-details .help-box a {
    color: var(--contrast-color);
  }
  
  .service-details .services-img {
    margin-bottom: 20px;
  }
  
  .service-details h3 {
    font-size: 26px;
    font-weight: 700;
  }
  
  .service-details p {
    font-size: 15px;
  }
  
  .service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }
  
  .service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Starter Section Section
  --------------------------------------------------------------*/
  .starter-section {
    /* Add your styles here */
  } 
  *{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
/* Header */
    .nav-icon{
        font-size: 20px;
        background: -moz-linear-gradient(top, #4BAADC 0%, #125097 100%);
        background: -webkit-linear-gradient(top, #4BAADC 0%, #125097 100%);
        background: linear-gradient(to bottom, #4BAADC 0%, #125097 100%);
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .list-group-item{
        border: 0 !important;
        background-color: transparent;
        color: #000;
    }
    .list-group-item-action:active{
      background-color: unset !important;
    }
    .logo-style{    
        width: 142px;
        height: 46px;
    }
    .nav-text-style:hover , .nav-text-style:focus{
        color:#e85c26;
    }
    .contactus-btn{
        background-color: #004178;
        border: 0;
        padding: 10px 25px;
        border-radius: 5px;
        color: #fff;
        font-weight: 500;
    }
    .dropdown-menu-text{
        color: #000;
        font-size: 14px;
        line-height: 150%;
        letter-spacing: 0.5px;
        padding-bottom: 14px;
        font-size: 18px;
        font-weight: 500;
    }
    .dropdown-menu-text:hover{
        color: #125097;
        font-size: 14px;        
        line-height: 150%;
        letter-spacing: 0.5px;
        padding-bottom: 14px;
        font-size: 18px;
        font-weight: 500;
    }
    .dropdown-menu-text-title{
        color: #000 !important;
        font-size: 12px;        
        font-weight: 600;
        line-height: 150%;
        letter-spacing: 0.5px;
    }
    .megamenu{
        border-radius: 15px;
    }
    .font-size-16px{
        font-size: 16px;
    }
    .navbar .megamenu{ 
        padding: 1rem;
    }
    .nav-div-style{
        padding: 10px 25px;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    .product-overview-style{
        color: #111;
        font-size: 17px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    .list-group-item-action:focus, .list-group-item-action:hover{
        background-color: #fff !important;
        color:#06416b !important;
    }
    .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show>.nav-link{
        color: #57007B;
    }
    .icon-size{
        font-size: 20px;
    }
/* Header end */

/* Industies Overview */
    .border-form{
        border: 1px solid #d7bcb0 !important;
    }
    .background-box{
        width:50px;
        height:50px;
        border-radius: 10px;
        padding: 0.8rem;
    }
    .back-dot{
        background-color: rgb(255, 222, 210);
        color: #004178;
    }
    .yellow-dot{
        background-color: #0e1c42;
    }
    .blue-dot{
        background-color: #d1efff;
    }
    .rose-dot{
        background-color: #ffe8eb;
    }
    .icon-size-list-ind{
      font-size: 20px;
    }
    .bg-white{
        background-color:#fff;
    }
    .border-1px{
        border: 1px solid #a7380d;
    }
    .border-radius-50px{
        border-radius: 50px;
    }
/* Industies Overview ends */

.learn-btn{
    color:  #fd830d;
}
.learn-btn:hover{
    color:  #fd830d;
}
.support-heading{
    font-size: 16px;
    line-height: 29px;
}
.support-content{
    font-size: 15px;
    line-height: 29px;
}
.indus-li-card {
    position: relative;
    transition: all 0.3s ease;
}
.indus-li-card:hover .text-blue, .indus-li-card:hover .para{
    color:#fff !important;
}
.indus-li-card-food:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-food.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-jewel:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-jewel.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-goods:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-goods.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-hospitality:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-hospitality.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-steel:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-steel.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-textile:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-textile.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-healthcare:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-healthcare.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-glass:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-glass.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-engineer:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-engineer.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-electrical:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-electrical.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-transport:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-transport.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.indus-li-card-bank:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bg-card-bank.webp);
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.features_tab{
    margin: 0px 0px 10px;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 25px 50px 25px 80px;
    height: 100%;
    text-indent: inherit;
    border-radius: 5px;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    background: linear-gradient(#fff, #fff) padding-box, 
    linear-gradient(to right,rgb(232 92 38),  rgb(3 67 121)) border-box;
    border-radius: 7px;
    border: 1px solid transparent;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.10);
    position: relative;
    display: block;
}
 .heading {
    font-size: 18px;
    line-height: 28px;
    color: #555555;
    font-weight: 600;
    display: block;
    position: relative;
    padding-bottom: 5px;
}
.line-height-25px{
    line-height: 25px;
}
.summary {
    font-size: 15px;
    line-height: 25px;
    color: #111111;
}
.tab-icon{
    position: absolute;
    left: 30px;
    top: 30px;
    font-size: 20px;
}
/* Footer */
    .copyright{
        font-weight: 400;
        letter-spacing:1px;
        color: #fff !important;
        font-size: 17px;
    }
    .copyright a{
        color: #fff ;
    }
    .text-grey{
        color: #718096;
    }
    .text-grey-footer{
      color: #5c5c5c;
    }
    .footer-address{
        color: #718096 !important;
        font-size: 16px;
        font-weight: 400;
        line-height: normal;
        letter-spacing: -0.08px;
    }
    .list-unstyled{
        padding-top: 15px;
    }
    .footer-mail{
        color: #404040;
        text-decoration-line: underline;
    }
    .form-heading{
        color:#404040;
        font-size: 16px;
        font-weight: 700;
        line-height: normal;
    }
    .footer-heading{
        color:#404040;
        font-size: 18px;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.09px;
    }
    .footer-location{
        color:  #404040;
        font-size: 16px;
        
        font-weight: 400;
        line-height: 236.3%;
        padding-top: 15px;
    }
    .footer-input-bg{
        background: #F3F3F3;
        height: 35px;
        margin-top: 15px;
    }
    .logo-style-footer{
        width: 142px;
        height: 46px;
    }
    .input-icons {
        position: relative;
    }
    .input-icons img {
        position: absolute;
        right: 20px;
        top: 63%;
        transform: translateY(-50%);
    }
    .icon {
        z-index: 1;
    }
    .social-footer{
        list-style-type: none;
    }
    .social-footer li{
        width: 34px;
        height: 34px;
        background-color: #fff;
        border-radius: 50%;
        box-shadow: 
        2px 2px 2px 2px #e0dcdc;
    }
    .social-footer .facebook:hover {
        background-color: #1877F2;
    }
    .social-footer .linkedin:hover {
        background-color: #0077B5;
    }
    .social-footer .twitter:hover {
        background-color: #1DA1F2;
    }
    .social-footer .instagram:hover {
        background:linear-gradient(to top,#f9ce34, #ee2a7b , #6228d7)
    }
    .social-footer .youtube:hover {
        background-color:#FF0000;
    }
    .social-footer .pininterest:hover {
        background-color:#E60023;
    }
    .social-footer .facebook:hover .footer-icon-style,
     .instagram:hover .footer-icon-style,
     .linkedin:hover .footer-icon-style,
     .twitter
     :hover .footer-icon-style,
     .youtube:hover .footer-icon-style,
     .pininterest:hover .footer-icon-style{
        color: #fff;
    }
    .footer-icon-style{
        width: 12px;
        height: 12px;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 12px;
    }
/* Footer End */
/* Career Page */
    .career-img-style{
        width: 100vw;
        height: 100%;
        box-shadow: inset 0 0 0 2000px rgba(255, 0, 150, 0.3);
    }
    .img-wrapper {
        position: relative;
        width: 100%;
        text-align: center;
    }
    .img-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(32, 27, 27, 0.59);
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    }
    .career-title{
        color: #FFF;
        text-align: center;
        font-size: 40px;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
    }
    .career-content{
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-weight: 300;
        line-height: 28px;
        letter-spacing: 0.2px;
        margin-top: 25px;
    }
    .career-btn-text{
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #fff;
    }
    .join-team{
        color: #1A202C;
        font-size: 35px;
        font-weight: 700;
    }
    .team-work .card-title{
        color: #001833;
        font-size: 18px;
        font-weight: 700;
        margin-top: 30px;
    }
    .team-work .card-content{
        color: #303234;
        font-size: 15px;
        font-weight: 300;
        line-height: 27px;
    }
    .openings .text{
        color: #001833;
        text-align: center;
        font-size: 18px;
        font-weight: 600;
    }
    .openings .title{
        margin-top: 15px;
        color: #001833;
        text-align: center;
        font-size: 36px;
        font-weight: 700;
    }
    .openings .content{
        color: #000;
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 19px;
    }
    .openings .card{
      border-radius: 14px;
      box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 5%);
      background: #0e1c42;
      padding: 20px;
      margin: 47px 20px;
      border: none;
    }
    .openings .card:hover .opening-icon-style{
        background:linear-gradient(225deg, #ff5a1a 0%, #004a85  100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .opening-icon-style{
        color:#aba6a4;
        font-size: 20px;
    }
    .openings .nav-link-style{
        color: #000;
        cursor: pointer;
    }
    .welcome-product .active {
        background-color:rgb(255 191 167);
        color: #000 !important;
        border-radius: 10px;
        font-weight: 600;
    }
    .welcome-product .nav-link-style:hover {
        background-color:rgb(255 191 167);
        color: #000;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
    }
    .openings .active {
        color: #004178;
    }
    .job .career-title{
        color: #001833;
        font-size: 32px;
        font-weight: 700;
    }
    .job .career-heading{
        color: #001833;
        font-size: 24px;
        font-weight: 700;
        margin-top: 30px;
    }
    .job .career-list{
      color: #253e5a;
      font-size: 16px;
      font-weight: 500;
      margin-top: 29px;
      letter-spacing: 0.5px;
    }
    .job .job-summary-title{
        color: #000;
        font-size: 18px;
        font-weight: 700;
        line-height: 24px;
    }
    .text-key{
        color: #746E6E;
        font-size: 17px;
        font-weight: 400;
        line-height: 24px;
    }
    .text-value{
        color: #001833;
        font-size: 17px;
        font-weight: 400;
        line-height: 24px;
    }
    .career-cta-link{
        color: #001833;
        font-size: 17px;
        font-weight: 500;
        line-height: 24px;
        text-decoration-line: underline;
        margin-top: 90px;
    }
    .margin-top-bottom-58{
        margin: 58px 0;
    }
/* Career End Page */

/* Contact Us */
    .location-card-title{
      color: #ffffff;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 1px;
    }
    .location-card{
        background: #0e1c42;
        border: none;
    }
    .branch-address{
      color: #cce7ff;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 1px;
    }
    .location .branch-name{
        position: absolute;
        bottom:-0.1%;
        right:0%;
        border-radius: 25px 0px 0px 0px;
        background: linear-gradient(211deg, #003c73f0 55%, #20a5f8);
        color: #fff;
        min-width: 150px;
        padding: 7px;
        border: none;
        align-items: center;
        text-align: center;
    }
    .location .head-office{
        position: absolute;
        top:0px;
        background: linear-gradient(211deg, #003c73f0 55%, #20a5f8);
        border-radius: 8px;
        color: #fff;
        border:0;
        margin: 12px;
        padding: 5px;
    }
    .icon-color{
      color: #d1efff; 
      font-size: 25px;
    }
    .head-office-icon{
        width:20px;
        height:auto;
    }
    .contact-get-in-touch-content{
        color: #717171;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
    }
    .contact-get-in-touch .title{
        color: #312C2C;
        font-size: 28px;
        font-weight: 600;
    }
    .contact-get-in-touch .content{
        font-size: 18px;
        font-weight: 400;
    }
    .contact-get-in-touch .card-radius{
        border-radius: 10px;
        border: 0;
    }
    .message-btn{
        padding: 15px 48px;
        border-radius: 5px;
        background: #011C2A;
        box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.12);
        color: white;
    }
    .message-btn:hover{
        padding: 15px 48px;
        border-radius: 5px;
        background: #011C2A;
        box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.12);
        color: white;
    }
    .contact-get-in-touch .text-violet{
        color: #6C0D7C;
        font-size: 15px;
        font-weight: 400;
    }
    .contact-get-in-touch .mail-address{
        color: #232222;
        font-size: 16px;
        font-weight: 400;
        text-decoration-line: underline;
    }
    .contact-get-in-touch .alignment{
        top:72%;
        right:47%;
    }
    .remove-form-border:focus{
        box-shadow: none;
        border: none;
        border-color: none;
        border-bottom: 1px solid #000;
    }
    .remove-form-border{
        border:0px;
        border-bottom: 1px solid #000;
    }
    .label-text:hover{
        color: darkgray;
    }
    .form-floating>.remove-form-border:not(:placeholder-shown) {
        padding-bottom: 1rem;
        padding-top: 2.5rem;
    }
    .accordion-button:not(.collapsed){
        color: #000;
    }
/*contact us  end*/
/*Food-Bevarage*/
    .content-industry{
        color: #8E98B2;
        font-size: 16px;
        font-weight: 400;
        line-height: 35px;
    }
    .common-industry-card{
        border-radius: 25px;
        border: 0;
        padding: 15px;
        color: #fff;
    }
    .industry-years{
        color: #FFF;
        font-size: 50px;
        font-weight: 700;
        line-height: 60px;
    }
    .industry-year-content{
        color: #FFF;
        font-size: 14px;
        font-weight: 400;
        line-height: 30px;
    }
    .food-li-icon{
        color:#ec5c29;
        font-size: 23px;
        font-weight: 900;
    }
    .light-yellow-bg{
        background-color: #fffce4;
        box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.10);
    }
    .icon-card{
        font-size: 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #004178;
        padding: 1rem;

    }
    .tick-li-icon{
        color: #ff9b70;
        font-size: 18px;
        font-weight: 900;
    }
    .food-li-content{
        color: #43586a;
        font-size: 15px;
        font-weight: 600;
        line-height: 30px;
    }
    .li-content{
        color:#004178;
        font-size: 15px;
        font-weight: 700;
        line-height: 30px;
    }
    .read-more-btn{
        background:linear-gradient(225deg, #ff5a1a 0%, #004a85  100%);
        border-radius: 29px;
        padding:20px 30px;
        color: #fff;
        border: 0;
    }
    .round-fill-bg{
        width:60px;
        height: 60px;
        align-items: center;
        color: #fff;
        font-size: 20px;
        background:linear-gradient(225deg, #ff5a1a 0%, #004a85  100%);
        border-radius: 50%;
        text-align: center;
        padding: 15px;
    }
    .grey-text{
        color: #727272;
        font-size: 16px;
        font-weight: 400;
        line-height: 30px;
    }
    .food-bevarage .phone{
        color: #034833;
        font-size: 18px;
        font-weight: 600;
        line-height: 28px;
    }
/*Food-Bevarage ends*/ 
.button-text{
    color:  #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.09px;
}
.border-radius-20px{
    border-radius: 20px;
}
.take-next-step-title{
    font-size: 32px;
    font-weight: 700;
    line-height: 55px
}
.take-next-step-content{
    color:#404040;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.orange-gradient-btn{
    border-radius: 5px;
    border: 1px solid #FFF;
    background: linear-gradient(225deg, #FFC656 0%, #F16063 100%);
    width: 262px;
    height: 57px;
    padding: 14px 25px;
    justify-content: center;
    align-items: center;
}
.orange-text{
    color: #00407a;
}
.text-pink{
    color: #F76680;
}
.text-blue{
    color: rgb(14 28 66);
}
.blue-text{
    color: rgb(0 65 120);
}
.font-size-20px{
  font-size: 20px;
  font-weight: 600;
}
.font-weight-bold{
    font-weight: bold;
}
.light-blue-bg{
    background: #F9F9FF;
}
.dark-blue-bg{
    background-color:rgb(240, 244, 247);
}
.scroll-bar-bg{
    background-color: #f0f4fc !important;
}
.btn-light-violet{
    background-color:rgb(114, 81, 244);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}
.btn-light-violet:hover{
    background-color:rgb(114, 81, 244);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}
.btn-light-blue{
    background-color:rgb(3 67 121);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}
.btn-light-blue:hover{
    background-color:rgb(3 67 121);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
}
.mid-light-blue-bg{
    background: #EFEFFC;
}
.icon-style{
    font-size: 20px;
    color: #000;
}
.margin-right-55{
    margin-right: 55px;
}
.common-title{
    color:rgb(0 28 102);
    font-weight: 700;
    line-height: 55px;
    font-size: 35px;
}
.food-title{
    color: #004178;
    font-size: 24px;
    font-weight: 600;
    line-height: 60px; 
}


.gradient-common-title{
    position: relative;
    display: inline-block;
    margin-top: 20px;
}
.gradient-common-title:after{
  content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.point-heading{
  font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: #123454;
}
.para-career{
  color: #424344;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
  font-weight: 500;
}

.product-card:hover{
    background: linear-gradient(#fff, #fff) padding-box, 
                linear-gradient(to right,rgb(232 92 38),  rgb(3 67 121)) border-box;
    border-radius: 20px;
    border: 1px solid transparent;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.10);
}
.service-card{
    border-radius: 7px;
    border: 1px solid transparent;
}
.gradient-border{
    background: linear-gradient(#fff, #fff) padding-box, 
                linear-gradient(to right,rgb(232 92 38),  rgb(3 67 121)) border-box;
    border-radius: 7px;
    border: 1px solid transparent;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.10);
}
.service-card:hover{
    background: linear-gradient(#fff, #fff) padding-box, 
                linear-gradient(to right,rgb(232 92 38),  rgb(3 67 121)) border-box;
    border-radius: 7px;
    border: 1px solid transparent;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.10);
}
.service-card:hover .service-gradient-color{
    background:linear-gradient(225deg, rgb(232 92 38) 0%,  rgb(3 67 121) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gradient-text-color-orange{
    background-color:  rgb(3 67 121);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}
.service-icon-style img{
    display:flex;
    align-items: center;
    justify-content: center;
    margin: 9px;
}
.service-icon-style{
    width: 60px;
    height: 60px;
    background-color: transparent;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: linear-gradient(#fff, #fff) padding-box, 
              linear-gradient(to right,rgb(232 92 38),  rgb(3 67 121)) border-box;
}
.service-heading{
    font-size: 20px;
    color:#000;
    font-weight: 600;
    line-height: 136.523%;
    margin-bottom: 20px;
}
.serice-card-body{
    margin: 20px  16px;
}
.sub-heading-footer{
    color: #4A5568;
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    padding-top: 19px;
}
.service-content{
    font-size: 15px;
    font-weight: 400;
    line-height: 162.023%;
    color:#4A5568;
    font-feature-settings: 'salt' on;
}
.text-decoration-none{
    text-decoration: none;
}
.text-white{
    color: #fff;
}
.theme-text-color{
    color: #57007B;
}
.theme-gradient-color {
    background: linear-gradient(225deg, #ffffff 0%, #ff8d5a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.theme-gradient-background{
    background:#004a85;
}
.theme-gradient-background-orange{
    background:#ea7548;
}
.innervex-works-card {
    border-radius: 9px;
    margin-bottom: 15px;
    padding: 10px;
    position: relative;
}
.innervex-works-card:not(:first-child)::after {
    content: "🡇";
    width: 30px; 
    height: 30px;
    background-size: contain;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    color :#004a85;
    font-size: 50px;
}
.innervex-works-title{
    color: #1A202C;
    font-size: 20px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.09px;
}
.innervex-works-content{
    color: var(--Gray-gray-600, #718096);
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.07px;
    padding-top: 10px;
}
.industry-list-title{
    color: #606060;
    text-align: center !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    margin-top: 25px;
}
.product-violet-overview{
    color: rgb(0 65 120);
    font-size: 20px;
}
.blue-bg-innervex{
    background: linear-gradient(205deg, #0c4375f0, #fd4e00c9 99%);
}
.my-20{
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.bg-pink{
    background-color: rgb(255 241 242);
}
.border-radius-5px{
    border-radius: 10px;
}
.innervex-product-overview .text-content{
    font-weight: 600;
    letter-spacing: 0.9px;
    color: #000;
}
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flip-card-back {
    transform: rotateY(180deg);
}
.cta-arrow{
    margin-top: -10px;
}
.text-justify-custom {
  text-align: justify;
}

.common-sub-title{
  font-weight: 500;
  color: #4F4F4F;
  text-align: center;
  font-size: 18px;
  line-height: 35px;
  font-weight: 700;
}
.badge-custom{
    font-size: 11px;
    border-radius: 5px !important;
}
.top-space {
    padding: 10px 0;
    scroll-margin-top: 70px;
    overflow: clip;
}

.carousel-indicators {
    position: absolute !important;
    left: -150px; 
    top: 50%; 
    transform: translateY(-50%);
    display: flex;
    flex-direction: column; /* Stack dots vertically */
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray; /* Default dot color */
    border: none;
    margin: 5px; /* Spacing between dots */
    opacity: 0.5;
}

.carousel-indicators [data-bs-target]{
    width: 18px;   
    height: 18px;
    background-color: #142e46 !important;
    margin: 0px;
}
.carousel-indicators button.active {
    background-color: #ea5e20;
    opacity: 1;
    width: 20px;
    height: 20px;
    margin: 0px;
}
.carousel-indicators{
    right: unset !important;
    bottom: unset !important;
}
.border-radius{
    border-radius: 15px;
}
.card-shadow{
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.product-card-title{
    color:#004178;  
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
}
.text-orange{
    color: #c93800;
}
.orange-bg{
    background-color: #e85c26;
}
.color-grey{
    color: #718096;
}
.style-type li{
    list-style-type: square;
}
.product-card-style{
  /*background-color:rgb(27 29 39); */
    border-radius: 20px;
    border: 0;
}
.font-size-20px{
    font-size: 21px;
}
.support-image-card{
    width:100%;
    border-radius: 15px 0 0 15px;
    height:100%;
}
.section-2-title{
    color: #142358;
}
.section-2-content{
    color: #142358;
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
}
.widget_title:before {
  content: '';
  height: 0.5px;
  width: 100px;
  background-color: #ff8048;
  position: absolute;
  left: 0;
  bottom: 0;
}
.widget_title:after {
  content: '';
  height: 10px;
  width: 10px;
  background-color: #fff;
  position: absolute;
  bottom: -4px;
  left: 96px;
  border-radius: 99px;
  border: 2px solid #b15f45d1;
}
a:before {
  content: "";
  font-weight: 600;
  left: 0;
  top: 2px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  font-size: 0.9em;
  background-color: transparent;
  border: none;
  color: inherit;
}
@media only screen and (min-width: 1300px) {
    .th-container {
        max-width: 1600px !important;
    }
}
/* @media only screen and (min-width: 1300px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: calc(var(--main-container) + 24px);
        padding-left: calc(24px / 2);
        padding-right: calc(24px / 2);
    }
} */
.main{
    margin-top: -75px !important;
}
.btn.cta-button {
  position: relative;
  overflow: hidden;
  background-color: #ea5e20;
  transition: background-color 0.5s ease-in-out;
  color: #fff;
  font-size: 17px;
  padding: 9px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
}

.btn.cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* Slight overlay effect */
    transition: left 0.4s ease-in-out;
}

.btn.cta-button:hover {
    background-color: #033d62;
    color: #fff;
}

.btn.cta-button:hover::after {
    left: 100%; 
}
.stats-row {
    position: relative;
    z-index: 1;
    margin-top: 5rem;
    background-color: var(--surface-color);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 2rem;
}
 .stat-item .stat-content h4 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.stat-item .stat-content p {
    font-size: 1.2rem;
    color: 
 color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
}
.numbers-text {
    color: #d4e8ff !important;
}
.stat-item .stat-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: 
 color-mix(in srgb, #e6d7d0, transparent 92%);
    border-radius: 50px;
    transition: 0.3s;
}
.stat-item .stat-icon i {
    font-size: 1.5rem;
    color: #f5a17c;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}
.sub-head-overview{
  font-size: 18px;
    font-weight: 600;
}
.background-dark{
  background-color:#080c18;
}
.sub-heading-type{
      font-size: 17px;
      font-weight: 400;
      line-height: 2;
      margin-bottom: 55px;
      text-align: justify;
}
.sub-heading-common{
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}
.ico-style{
  color: #0e1c42;
    font-size: 26px;
}
.accordion-button:not(.collapsed){
  color: #000000 !important;
}
.points-consult{
  font-size: 16px;    
  font-weight: 500;
  line-height: 25px;
}
.dark-blue-background{
  background-color: #060e26;
}
.about-para{
  color: #2f2f2f;
  font-size: 17px;
  font-weight: 400;
  line-height: 2.4;
}
.phone-img-banner{
  margin-top: 100px;
}
.company-highlights{
  margin-top: -200px;
}
.breadcrumb-wrapper {
  padding: 10px 20px;
  font-family: Arial, sans-serif;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.breadcrumb li {
  color: #ffffff;
}

.breadcrumb li::after {
  content: "››";
  margin: 0 8px;
  color: #ffffff;
}

.breadcrumb li:last-child {
  color: #ffffff;
  font-weight: bold;
}

.breadcrumb li:last-child::after {
  content: "";
}
.main-heading-sub {
  margin-top: 29px;
}

.service-banner{
  background-image: url(../img/service-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.industry-banner{
  background-image: url(../img/industry-overview.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.product-banner{
  background-image: url(../img/product-overview.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.erp-banner{
  background-image: url(../img/erp-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.crm-banner{
  background-image: url(../img/crm-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.retail-banner{
  background-image: url(../img/retail-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.scm-banner{
  background-image: url(../img/scm-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.texlogic-banner{
  background-image: url(../img/textile-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.hms-banner{
  background-image: url(../img/mediaps-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.mrp-banner{
  background-image: url(../img/mrp-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.hrms-banner{
  background-image: url(../img/hrms-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.jewelsys-banner{
  background-image: url(../img/jewelsys-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}

.smart-store-banner{
  background-image: url(../img/smart-store-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.smart-store-banner{
  background-image: url(../img/smart-store-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.smart-store-banner{
  background-image: url(../img/smart-store-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.smart-store-banner{
  background-image: url(../img/smart-store-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.smart-store-banner{
  background-image: url(../img/smart-store-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.food-banner{
  background-image: url(../img/food-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.jewellery-banner{
  background-image: url(../img/jewellery-ind-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.consumable-banner{
  background-image: url(../img/consumable-goods-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.hospitality-banner{
  background-image: url(../img/hospitality-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.steel-banner{
  background-image: url(../img/steel-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.textile-banner{
  background-image: url(../img/textile-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.heathcare-banner{
  background-image: url(../img/healthcare-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.glass-banner{
  background-image: url(../img/glass-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.engineering-banner{
  background-image: url(../img/engineering-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.electronics-banner{
  background-image: url(../img/electrical-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.transportations-banner{
  background-image: url(../img/transportations.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.construction-banner{
  background-image: url(../img/constructions-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.banking-banner{
  background-image: url(../img/banking-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-banner{
  background-image: url(../img/about-us-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.careers-banner{
  background-image: url(../img/careers.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-banner{
  background-image: url(../img/contact-us-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.news-banner{
  background-image: url(../img/news-events-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.mgt-banner{
  background-image: url(../img/mgt-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.privacy-banner{
  background-image: url(../img/privacy-policy-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}
.terms-banner{
  background-image: url(../img/terms-and-consditions-banner.webp);
  background-position: cover;
  background-repeat: no-repeat;
  background-size: cover;
}

@media(max-width: 2580px) {
  .product-banner-image{
    background-image: url(../img/product-overview.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    margin-top: -100px;
  }
  
    .section-title {
      text-align: center;
      padding: 30px 0px;
      position: relative;
    }
    .main{
        margin-top: -10px;
    }
    .navbar .has-megamenu {
        position: static;
    }
    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        border: 0;
        border-radius: 16px;
        box-shadow: 0px 24px 56px 0px rgba(167, 174, 186, 0.16);
        background: #FFF;
        padding: 2rem;
    }
    .carousel-heading{
        top: 200px;
        text-align: left;
        color: black;
    }
    .main-heading{
        font-size: 50px;
        font-weight: 300;
        line-height: 71px;
        margin-bottom: 28px;
    }
    .main-heading-product-overview{
        color:#858585;
        font-size: 20px;
        font-weight: 300;
        line-height: 45px;
        margin-bottom: 28px;
    }
    .overview-list .main-heading-sub{
        font-size: 53px;
        font-weight: 700;
        line-height: 71px
    }
    .main-heading-sub {
        font-size: 60px;
        line-height: 80px;
        letter-spacing: -2.44px;
        color: #ffffff;
        font-weight: 700;
    }
    .cta-button{
        padding: 15px 20px;
        color: #fff;
    }
    .sub-heading{
        color: #000000;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.75;
        margin-bottom: 55px;
    }
    .welcome-product .sub-heading{
        color: #383838;
        font-size: 17px;
        font-weight: 400;
        line-height: 36px;
        margin-bottom: 0px;
        text-align: justify;
    }
    .sub-heading-home{
        color: #4A5568;
        font-size: 18px;
        font-weight: 400;
        line-height: 36px;
        margin-bottom: 0px;
    }
    .footer-style{
        width: 1640px;
        height: 496px;
        margin: auto;
        align-items: center;
        justify-self: center;
    }
    .padding-3rem{
        padding: 3rem;
        padding-bottom: 0px;
    }
    .padding-0{
        padding-right: 0px;
    }
    .take-next-step-view {
        background-image: url('../img/design.webp');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }
    .take-next-step-view button {
        margin-top: 45px;
    }
    .role{
        color: #fff;
        font-size: 20px;
        font-weight: 700;
    }
    .opening-card-title{
        color: #fcaf8d;
        font-size: 16px;
        font-weight: 500;
    }
    .opening-card-count{
        color: #e7e7e7;
        font-size: 22px;
        font-weight: 500;
    }
   
    .centered {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .cta-career-button{
        background: rgb(255 191 167);
        border: 0;
        color: #062b5b;
        padding: 15px;
        font-weight: bold;
        border-radius: 8px;
        margin-top: 38px;
    }
    .cta-career-button:hover{
        border-radius: 8px;
        background: rgb(255 191 167);
        border: 0;
        padding: 13px 50px;
        margin-top: 38px;
        font-weight: 500;
        color:#062b5b;
    }
    .common-banner-left-title{
        color: #FFF;
        text-align: center;
        font-size: 48px;
        font-weight: 700;
        line-height: 55px; 
        position: absolute;
        z-index: 0;
        top: 68%;
        left:10%
    }
    .common-banner-left-content{
        color: #FFF;
        text-align: center;
        font-size: 24px;
        font-weight: 700;
        line-height: 55px;
        position: absolute;
        z-index: 0;
        top: 79%;
        left:10%
    }
    .industry-years-container{
        bottom: 20%;
        right:20px;
    }
    .welcome-product .nav-link-style{
        color:black;
        font-weight: 600;
        margin:5px 35px;
        padding: 12px;
    }
    .welcome-content{
        text-align: center;
        font-size: 52px;
        font-weight: 800;
        line-height: 95px;
        letter-spacing: 0.07px;
    }
    .counter{
        font-size: 50px;
        font-weight: 700;
        color:#fff;
        padding: 15px;
    }
    .counter::after{
        content:"+"
    }
    .join-with-us .call-to-action-heading{
        font-weight: 700;
    }
    .join-with-us .paragraph{
        font-size: 18px;
        font-weight: 400;
        line-height: 36px;
        color: rgb(255 203 183);
    }
    .join-with-us .cta-button {
        background-color: #fff;
        color: #000;
        font-weight: bold;
    }
    .para-light {
      color: #b7b4b4;
      font-size: 16px;
      font-weight: 400;
      line-height: 27px;
    }
    .para{
      color: #424344;
        font-size: 17px;
        font-weight: 400;
        line-height: 36px;
        font-weight: 500;
        text-align: justify;
    }
    .scrollmenu{
        max-width: 100%;
        margin: auto;
        background-color: #fff;
        border-radius: 10px;
    }
    .scrollmenu ul{
        display: flex;
        align-items: center;
        list-style-type: none;
        justify-content: space-between;
    }
    .product-design{
        font-weight: 700;
        font-size: 45px;
        text-align: center;
        color: #000;
    }
    .dot{
        width:20px;
        height:20px;
        background-color: #9164e6;
        border-radius: 50%;
        margin-top: 12px;
    }
    .product-design::before,
        .product-design::after {
            display: inline-block;
            content: "";
            border-top: .1rem solid #c897be;
            width: 10rem;
            margin: 0rem 3rem;
            transform: translateY(-1rem);
        }
    .product-heading-sub{
        font-size: 20px;
        line-height: 40px;
        font-weight: 700;
    }
    .icon-style-for-before{
        font-size: 20px;
        color:#ff5c35;
        text-align: end;
    }
    .icon-style-for-after{
        font-size: 30px;
        color:#004178;  
        text-align: end;
        padding: 0.8rem;
    }
    .icon-map-style{
        font-size: 25px;
    }
    .icon-style-for-product{
        font-size: 65px;
        color:#ff5c35;
        text-align: end;
    }
    .flip-card {
        background-color: transparent;
        width: 250px;
        height: 200px;
        perspective: 1000px;
    }
    .flip-card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
        display: flex;
        justify-content: center;
        border-bottom: 6px solid rgb(114, 81, 244);
        border-radius: 20px;
    }
    .flip-card-front {
        padding-top: 25px;
    }    
    .icon-style-for-feature{
          font-size: 45px;
          color:#ff5c35;
          text-align: end;
          padding: 1rem;
    }
    .dot-border{
          width: 90px;
          height: 90px;
          border: 2px solid rgb(0 65 120);
          background-color: transparent;
          border-radius: 50%;
    }
    
    .slider-section .carousel-inner{
        height:800px;
    }
    .software-title{
        color: #1A202C;
        font-size: 30px;
        font-weight: 400;
        line-height: 55px;
    }
    .development-title{
        color: #1A202C;
        font-size: 35px;
        font-weight: 700;
        line-height: 55px;
    }
    .development-title::after {
        content: '';
        position: absolute;
        height: 5px;
        width: 10%;
        background: linear-gradient(25deg, #004178  0%, rgb(232 92 38) 100%);
        top: -30%;
        right:45%;
    }
    .box-shadow{
        box-shadow: 0px 24px 56px 0px rgba(167, 174, 186, 0.16);
    }
    .common-banner-new-title{
        color: #004178;  
        font-size: 65px;
        font-weight: 700;
        line-height: 55px; 
        position: absolute;
        z-index: 0;
        top: 37%;
        left:53%;
        
    }
    .common-banner-new-content{
        color: #004178;  
        font-size: 25px;
        font-weight: 700;
        line-height: 55px;
        position: absolute;
        z-index: 0;
        top: 54%;
        left: 53%;
    }
    .common-banner-about-title{
        color: #004178;
        text-align: center;
        font-size: 60px;
        font-weight: 700;
        line-height: 55px;
        position: absolute;
        z-index: 0;
        top: 38%;
        right: 31%;
    }
    .common-banner-about-content{
        color:#eb5e20;
        font-size: 25px;
        font-weight: 700;
        position: absolute;
        z-index: 0;
        top: 58%;
        right: 29%;
    }
    .indus-li-card:hover .arrow-block{
        opacity: 1;
    }
    .arrow-block{
        opacity: 0;
    }
    .common-banner-button{
        color: #eb5e20;
        font-size: 16px;
        font-weight: 700;
        position: absolute;
        z-index: 0;
        top: 70%;
        left: 53%;
    }
    .about .about-description {
      margin-bottom: 1rem;
        color: 
 color-mix(in srgb, var(--default-color), transparent 20%);
        max-width: 95%;
        font-size: 18px;
        font-weight: 500;
        line-height: 30px;
        text-align: justify;
    }
    .sub-heading-career{
      color: #ffffff;
      font-size: 18px;
      font-weight: 400;
      line-height: 2.00;
    }
}
@media(max-width: 1875px) {
    .common-banner-new-title{
        top: 40%;
    }
    .common-banner-new-content{
        top: 52%;
    }
}
@media(max-width: 1440px) {
    
    
    .slider-section .carousel-inner{
        height:700px;
    }
    .take-next-step-view{
        background-image: none;
    }
    .main-heading{
        font-size: 30px;
        font-weight: 300;
        line-height: 71px;
        margin-bottom: 8px;
        margin-top: 75px;
    }
    .main-heading-sub{
        font-size: 39px;
        font-weight: 800;
        line-height: 51px;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }
    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 75%;
        margin-left: auto; 
        margin-right: auto;
        border: 0;
        border-radius: 16px;
        box-shadow: 0px 24px 56px 0px rgba(167, 174, 186, 0.16);
        background: #FFF;
    }
    .carousel-heading{
        position: absolute; 
        top: 90px;
        left:90; 
        text-align: left;
        color: black;
    }
    .padding-3rem{
        padding: 1rem;
    }
    .common-banner-left-content{
        top: 79%;
    }
    .welcome-product .nav-link-style{
        margin:5px 25px;
    }
    .scrollmenu{
        max-width: 100%;
        justify-content: center;
        margin: auto;
        background-color: #fff;
        overflow: hidden;
    }
    .scrollmenu ul{
        overflow-x: auto;
        margin: 0;
        padding: 0;
    }
    .scrollmenu ul::-webkit-scrollbar{
        display: none;
    }
    .scrollmenu ul li{
        display: inline-block;
        white-space: nowrap;
    }
    .common-banner-new-title{
        font-size: 40px;
        top: 40%;
        left: 52%;
    }
    .common-banner-new-content{
        font-size: 25px;
        top: 54%;
        left: 52%;
        line-height: 95px;
    }
    .common-banner-about-title{
        font-size: 35px;
        top: 29%;
        right: 23%;
    }
    .common-banner-about-content{
        font-size: 23px;
        top: 53%;
        right: 15%;
    }
    .centered{
        width:90%;
    }
    .nav-tabs-container{
      width: 100%;
    overflow-x: auto;
    }
    .nav-tabs {
      overflow-x: auto;
      overflow-y: hidden;
      white-space: nowrap;
      display: flex;
      flex-wrap: nowrap;
      scrollbar-width: thin; /* For Firefox */
    }
    .nav-tabs{
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    } 
    .nav-tabs::-webkit-scrollbar {
      display: none;
    }
    .nav-tabs .nav-item {
      min-width: 120px; /* Ensure scrolling by forcing wider items */
    }
}
@media(max-width: 1280px) {
    .main{
        margin-top: -10px;
    }
    .nav-text-style {
        font-size: 14px;
        color: #000;
        margin-right: 16px;
    }
}
@media(max-width: 1024px) {
  .phone-img-banner{
    margin-top: 125px !important;
  }
  .company-highlights{
    margin-top: -170px !important;
  }
  .section-title h2 {
    font-size: 40px;
  }
    .main{
        margin-top: -10px;
    }
    .navbar .megamenu {
        width: 100%;
    }
    .nav-text-style{
        font-size: 14px;
        margin-right: 6px;
    }
    .footer .social-links a
    {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    margin-right: 3px;
  }
    .slider-section .carousel-inner{
        height:550px;
        margin-top: 20px;
    }
    .carousel-heading{
        position: absolute; 
        top: 190px;
        left:30px; 
    }
    .main-heading{
        font-size: 25px;
        font-weight: 300;
        line-height:35px;
        margin-top: -75px;
    }
    .main-heading-product-overview{
        font-size: 20px;
        line-height: 40px;
    }
    .main-heading-sub{
        font-size: 34px;
        font-weight: 700;
        line-height: 54px;
        letter-spacing: 0.5px;
    }
    .cta-button{
        padding: 7px 11px;
        color: #fff;
    }
    .sub-heading{
        font-size: 17px;
        font-weight: 400;
        line-height: 36px;
        margin-bottom: 25px;
    }
    .cta-career-button{
        margin-top: 0px;
    }
    .welcome-product .sub-heading{
        font-size: 15px;
        font-weight: 400;
        line-height: 36px;
    }
    .sub-heading-home{
        font-size: 15px;
        font-weight: 400;
        line-height: 36px;
    }
    .service-card{
        align-items: center;
        margin-right: 0;
    }
    .common-banner-left-title{
        top: 68%;
        left:10%;
        font-size: 32px;
    }
    .common-banner-left-content{
        top: 80%;
        left:10%;
        font-size: 20px;
    }
    .horizontal-nav-style{
         padding:2px;
    }
    .welcome-product .nav-link-style{
        margin:5px 25px;
    }
    .common-banner-new-title{
        top: 35%;
        left: 57%;
        font-size: 30px;
    }
    .common-banner-new-content{
        top: 64%;
        left: 54%;
        font-size: 18px;
        line-height: 24px;
    }
    .common-banner-about-title{
        font-size: 35px;
        top: 18%;
        right: 23%;
    }
    .common-banner-about-content{
        font-size: 20px;
        top: 51%;
        right: 13%;
    }
    .centered{
        width:90%;
    }
    
}
@media(max-width: 992px) {
  .main-heading-sub{
    font-size: 27px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: 1px;
  }
    .main{
        margin-top: -10px;
    }
    .get-in-touch{
        text-align: center;
    }
    .vertical-nav-style{
        padding: 10px 25px;
    }
    .openings .nav{
        border: 1px solid #ccc;
        padding: 10px;
        border-radius: 6px;
        background: #f9f9f9;
        margin-top: 15px;
    }
    .openings .nav-item:not(:last-child){
        border-bottom: 1px solid #ccc;
    }
    .role{
        font-size: 18px;
    }
    .opening-card-title{
        font-size: 16px;
        margin-top: 10px;
    }
    .opening-card-count{
        font-size: 15px;
    }
    .openings-title:after{
        width: 10%;
    }
    .welcome-content{
        font-size: 38px;
        font-weight: 700;
        line-height: 56px;
    }
    .para{
      font-size: 18px;
      font-weight: 500;
      line-height: 37px;
    }
    .common-title{
        font-size: 24px;
        line-height: 33px;
        text-align: center;
    }
    .slider-section .carousel-inner-bg{
        background-image:  url(../img/home-banner.webp) !important;
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
    }
}
@media(max-width: 768px) {
  .erp-home-image{
    max-width: 685px !important;
  }
    .main{
        margin-top: -25px;
    }
    .slider-section .carousel-inner{
        height:475px;
        margin-top: 30px;
    }
    
    
    .mobile-view-scroll{
        max-height: 100vh;
        overflow-y: scroll;
    }
    
    header .navbar-collapse {
        border: 1px solid #ccc;
        padding:0 10px;
        border-radius: 6px;
        background: #f9f9f9;
        margin-top: 15px;
    }
    .navbar .megamenu{
        box-shadow: unset !important;
        background: #fff;
        border-radius: 0;
    }
    header .dropdown-toggle::after {
        margin-right: 10px;
        margin-left: auto;
        position: relative;
        display: table;
        top: -12px;
    }
    header .nav-text-style {
        font-size: 16px;
        margin-right: 0;
        width: 100%;
    }
    .service-card{
        align-items: center;
        margin-right: 0;
    }
    .cta-career-button{
        padding: 5px;
        margin-top: 10px;
    }
    .horizontal-nav-style{
        padding:2px;
   }
   .welcome-product .nav-link-style{
        margin:5px 18px;
    }
    .product-design{
        font-weight: 700;
        font-size: 35px;
    }
    .dot{
        margin: 20px;
        margin-top: 15px;
    }
    .product-design::before,
    .product-design::after {
        width: 1rem;
        margin: 0rem 1rem;
        transform: translateY(-1rem);
    }
    .product-heading-sub{
        font-size: 30px;
        line-height: 45px;
        font-weight: 800;
    }
    .icon-style-for-product{
        font-size: 40px;
        color:#ff5c35;
        text-align:center;
    }
    .common-banner-left-title{
        top: 55%;
        left:10%;
        font-size: 32px;
    }
    .common-banner-left-content{
        top: 69%;
        left:10%;
        font-size: 20px;
    }
    .common-banner-new-title{
        top: 26%;
        left: 52%;
        font-size: 25px;
    }
    .common-banner-new-content{
        top: 55%;
        left: 48%;
        font-size: 16px;
        line-height: 26px;
    }
    .common-banner-about-title{
        font-size: 35px;
        top: 29%;
        right: 23%;
    }
    .common-banner-about-content{
        font-size: 12px;
        top: 70%;
        right: 21%;
    }
    .slider-section .carousel-inner-bg{
        background-image: url(../img/mb-banner.webp) !important;
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
    }
    .main-heading {
        margin-top: -90px;
    }
    .main-heading-sub{
      font-size: 27px;
      font-weight: 700;
      line-height: 42px;
      letter-spacing: 1px;
    }
    .section-2-content
    {
      font-size: 18px;
      line-height: 30px;
    }
    .section-title h2 {
      margin-bottom: 30px;
      font-size: 24px;
      line-height: 40px;
    }
    .section-title {
      padding: 5px 0px;
    }
    .section-title p {
      text-align: justify;
      padding: 0 20px;
  }
  .footer .social-links a {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
}
@media(max-width: 425px) {
  .footer .social-links a {
    margin-right: 20px;
  }
    .about .about-description {
      max-width: unset;
    }
    .section-title {
      padding: 5px 0px;
    }
    .take-next-step-view button {
      margin-top: 15px;
      margin-bottom: 15px;
    }
    .slider-section .carousel-inner{
      height: 644px;
    }
    .main-heading{
        font-size: 22px;
        font-weight: 300;
        line-height:35px;
        padding-top: 145px !important;
    }
    .main-heading-sub{
      font-size: 27px;
      font-weight: 700;
      line-height: 42px;
      letter-spacing: 1px;
    }
    .sub-heading{
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 25px;
    }
    .cta-career-button{
        border-radius: 8px;
        background: rgb(255 191 167);
        border: 0;
        color: #062b5b;
        padding: 15px;
        font-weight: bold;
    }
    .common-banner-left-title{
        top: 40%;
        left:10%;
        font-size: 32px;
    }
    .common-banner-left-content{
        top: 61%;
        left:10%;
        font-size: 15px;
    }
    .industry-years-container{
        bottom: -5%;
        right:20px;
    }
    .welcome-product .nav-link-style{
        margin:5px 6px;
        padding: 12px;
    }
    .welcome-content{
        font-size: 26px;
        line-height: 39px;
    }
    .product-design{
        font-weight: 700;
        font-size: 25px;
    }
    .dot{
        margin: 15px;
        margin-top: 5px;
    }
    .product-design::before,
        .product-design::after {
            width: 25px;
            margin: 5px 5px;
            transform: translateY(-1rem);
        }
    .software-title{
        font-size: 24px;
        line-height: 45px;
    }
    .development-title{
        font-size: 24px;
        line-height: 38px;
    }
    .common-banner-new-title{
        top: 30%;
        left: 55%;
        font-size: 16px;
        text-align: center;
    }
    .common-banner-new-content{
        top: 50%;
        left: 54%;
        font-size: 13px;
        line-height: 25px;
    }
    .common-banner-about-title{
        font-size: 24px;
        top: 29%;
        right: 10%;
    }
    .common-banner-about-content{
        font-size: 13px;
        top: 54%;
        right: 2%;
    }
    .indus-li-card:hover .arrow-block{
        opacity: 0;
    }
    .arrow-block{
        opacity: 1;
    }
    .common-banner-button{
        color: #eb5e20;
        font-size: 16px;
        font-weight: 700;
        position: absolute;
        z-index: 0;
        top: 70%;
        left: 53%;
    }
    .slider-section .carousel-inner-bg{
        background-image: url(../img/mb-banner.webp) !important;
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        margin-top: -215px;
    }
    .carousel-caption{
      right: 0%;
    }
    .stat-item {
      padding: 1rem;
    }
    .section-title h2{
      margin-bottom: 30px;
      font-size: 24px;
      line-height: 40px;
    }
    .section-title p {
      text-align: justify;
      padding: 0 20px;
    }

}
@media (min-width: 992px) {
    .navbar .nav-item:hover .megamenu {
        display: block;
        z-index: 3;
        max-width: 90%;
    }
    
    .centered {
        position: absolute;
    }
    .slider-section .carousel-inner-bg{
        background-image: url(../img/home-banner.webp);
        background-size: cover; 
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
    }
}