/**
* Template Name: Technerds

*/
/*@font-face {*/
/*  font-family: 'Space Grotesk';*/
/*  src: url('/assets/fonts/Space_Grotesk/SpaceGrotesk-Regular.ttf') format('truetype');*/
/*  font-weight: 400;*/
/*  font-style: normal;*/
/*}*/

/*@font-face {*/
/*  font-family: 'Space Grotesk';*/
/*  src: url('/assets/fonts/Space_Grotesk/SpaceGrotesk-Medium.ttf') format('truetype');*/
/*  font-weight: medium;*/
/*  font-style: normal;*/
/*}*/
@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/fonts/Space_Grotesk/SpaceGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/fonts/Space_Grotesk/SpaceGrotesk-Medium.ttf') format('truetype');
  font-weight: 500; /* Corrected */
  font-style: normal;
}
.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

/* Fonts */
:root {
  /* --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito",  sans-serif;
  --nav-font: "Inter",  sans-serif; */
  --default-font: 'Space Grotesk';
  --heading-font: 'Space Grotesk';
  --nav-font: 'Space Grotesk';
}

/* 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:#052035;*/
  --background-color: #01091d;
  /* Background color for the entire website, including individual sections */
  --default-color: #fff;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f15a24;
  /* 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-color: #f3f9ff;
  --surface-color: #ffffff;
}

.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);
  /*background: linear-gradient(to top, #010b25, #010e2f);*/
  background: linear-gradient(to top, #01091d, #000f30);
  /*background-color: var(--background-color);*/
  /* font-family: var(--default-font); */
  font-family: 'Space Grotesk', sans-serif !important;

}

a {
  /* color: var(--accent-color); */
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  /* color: color-mix(in srgb, var(--accent-color), transparent 25%); */
  color: #f15a24;
  text-decoration: none;
}
p{
    font-family: var(--heading-font) !important;  
      /*text-align:unset; */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h2 {
  font-size: 40px;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
 color: #a12828;
    text-align: left;
    font-size: 12px;
    padding: 3px;
    margin-bottom: 12px;
    font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.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);
  }
}

.dropdown {
  position: static;
}

#navmenu ul li a.active::before {
  content: '';
  width: 26px;
  height: 4px;
  border-bottom: 4px solid #ed5924;
  border-radius: 40px;
  background: transparent;
  position: absolute;
  bottom: 10px;
  transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  /*background-color: var(--background-color);*/
    background-color:#fff;
  transition: all 0.5s;
  z-index: 997;
}

/* .navmenu li:last-child a {
 width: 138px;
} */
.navmenu .contactus {
  width: 138px;
}

.navmenu a,
.navmenu a:focus {
  justify-content: start !important;
}

.header .header-container {
  background: var(--surface-color);
  /* background-color: #00091e; */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  /* background-color: #00091e; */
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  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: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 14px 0 16px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.menu-box {
  width: 100%;
  padding: 0px 12px 12px 12px;
  /* height: 76px; */
  height: 60px;
  align-items: center;
}

.menu-box .image-container {
  padding: 4px;
  margin-right: 12px;
  background-color: #f15a24;
  margin-bottom: 0px;
}

.menu-box .image-container img {
  width: 38px;
  height: 38px;
  padding: 6px;
}

.navmenu .dropdown .menu-box a {
  padding: 0px;
  color: #fff;
  line-height: 16px;
  text-wrap: unset;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: #f15a24 !important;
}

.menu-box h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.menu-box p {
  font-size: 10px;
  line-height: 13px;
  text-align: left;
  margin: 0px;
}

.menu-bg-section {
  background: #212020 !important;
  color: #fff;
}

.menu-box .navmenu li:last-child a {
  width: unset !important;
}


@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;
  } */

  .relative {
    position: relative;
  }

  /* .scrolled .navmenu a,
  .scrolled .navmenu a:focus {
    color:#fff; 
  } */
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    /* color:#fff; */
    padding: 18px 26px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    line-height: 21px;
    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: var(--nav-hover-color);
    color: #f15a24; */
    color: #333;
  }

  .navmenu .dropdown.industries ul {
    /* left: -809px !important; */
    /* width: 1170px; */
    /* width: 1230px; */
    margin: 0;
    background-color: #222325 !important;
    padding: 16px;
    /* background: var(--nav-dropdown-background-color); */
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0px;
    /* top: 130%; */
    opacity: 0;
    transition: unset !important;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    align-items: start;
  }

  .navmenu .dropdown ul {
    width: 100vw;
    left: 0px;
    margin: 0;
    padding: 40px 20px 16px;
    display: block;
    position: absolute;
    visibility: hidden;
    padding: 16px;
    /* top: 130%; */
    opacity: 0;
    /* transition: 0.1s; */
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    align-items: start;
  }

  .menu-bg-section-inner {
    width: 1400px;
    margin: 48px auto 20px auto;
    display: flex;
  }

  /* .navmenu .dropdown ul.menu-bg-section{
position: absolute;
  } */

  /* .navmenu .dropdown ul li {
    min-width: 200px;
  } */

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}



/* Navmenu - Mobile */
@media (max-width: 1199px) {
    ul li a.active+.d-sm-block.d-md-flex.menu-bg-section.col-12 {
        display:block;
        
    } 
     .navmenu .dropdown>.dropdown-active {
    display: none;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .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: 15px;
    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);
  }

 
  .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;
  }
}

/* @media only screen and (min-width: 768px) and (max-width: 1366px) {
 .navmenu .dropdown>.dropdown-active {
    display: block !important;
    background-color: rgba(33, 37, 41, 0.03);
  }
  #navmenu ul li a.active::before{
    border-bottom: none !important;
  }
  .navmenu .dropdown ul{
   display: none !important;
  }
} */
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: portrait),
only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: landscape) {
  .navmenu .dropdown>.dropdown-active {
    display: block !important;
    background-color: rgba(33, 37, 41, 0.03);
  }

  #navmenu ul li a.active::before {
    border-bottom: none !important;
  }

  .navmenu .dropdown ul {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: rgba(0, 0, 0, 1);
  font-size: 14px;
  position: relative;
}

footer h1 {
  color: #676767;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: capitalize;
}

footer label {
  display: inline-block;
  margin-bottom: .5rem;
}

footer .formContainer button {
  background-color: #f15a24;
  border: 1px solid #f15a24;
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
}

footer .formContainer .btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: #f15a24;
  border-color: #f15a24;
}

.form-group {
  margin-bottom: 1rem;
}

footer .formContainer {
  margin-top: 80px;
  background: white;
  padding: 25px;
  position: absolute;
  top: -230px;
  width: 368px;
  box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.16);
  color: #676767;
  border-radius: 5px;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 6px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 13px;
  font-family: var(--heading-font);
  /* color: #9d9b9d; */
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 400;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2d2d2d;
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%); */
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  /* font-weight: bold; */
  position: relative;
  padding-bottom: 20px;
}

.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: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;

}

.sitename {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  font-size: 13px;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  color: #b8b8b3;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.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: 85px;
}

/*--------------------------------------------------------------
# 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: 46px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  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;
}

.section-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  margin-bottom: 32px;
  /* margin-bottom: 0px; */
}

.home-screen .section-heading {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
  margin-bottom: 32px;
}

.padding-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  /* padding-top: 160px; */
  padding-top: 56px;
  background: rgb(8, 12, 14);
  /* background: linear-gradient(90deg, rgba(8,12,14,1) 0%, rgba(12,40,52,1) 29%, rgba(19,73,79,1) 62%, rgba(25,90,91,1) 100%); */
  /* background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), 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(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 62px;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

.background-video-container {
  background-size: cover;
  height: 100vh;
  align-items: center;
}

@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: 28px;
    line-height: 40px;
  }
}

.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 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-rounded {
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
}

.btn-rounded:hover {
  border: 1px solid #f1f1f1;
  border-color: var(--accent-color);
}

.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: 300px;
  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;
  }

  .breadcrumb {
    margin-top: 10px !important;
  }

  .image-banner .overlay {
    position: static !important;
  }
}

@media (max-width: 767px) {
        .iso-container {
        width: 100% !important;
        margin-left: 0px !important;
        margin-top: 30px;
    }
    .mobile-top {
        margin-top: 16px;
    }
    .feature-box.green.pt-5 {
        padding-top:0px !important;
    }
    .top-move{
    position: unset;
    top: unset !important;
    height:unset !important;
}
.homeh-100{
     height:unset !important;
}
  .differentiator-features-section {
    background-image: unset !important;
    width: 1px !important;
    height: 87% !important;
    background-repeat: repeat-y !important;
    left: 47% !important;
    top: 6% !important;
    background-size: contain !important;
  }

  .logo-section {
    height: 85px !important;
    width: 162px;
  }

  .section-heading {
    font-size: 24px !important;
    line-height: 44px !important;
  }

  .differentiator-item {
    width: 100% !important;
  }
.contact-form{
    padding:0px !important;
}
  .central-hub {
    width: unset !important;
    margin-bottom: 30px !important;
  }

  h2 {
    font-size: 30px;
  }

  .logo-section {
    margin: 0 auto;
  }
}

.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, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.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: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  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;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.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: 1rem;
  font-size: 1rem;
}

.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;
    margin-top: 3rem;
    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: 5%;
  right: 5%;
  background-color: var(--accent-color);
  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-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  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: 14px;
  font-weight: 500;
  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-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  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: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.about .feature-box {
  border: 1px solid rgba(59, 59, 59, 1);
  background-color: #0E0E0E;
  box-shadow: 0px 12px 50px 0px rgba(241, 90, 36, 0.3);
  height: 208px !important;
  width: 290px;
  text-align: center;
  border-radius: 8px !important;
  padding: 16px 22px;
  border: 1px solid rgba(59, 59, 59, 1);
  box-shadow: 0px 12px 50px 0px rgba(241, 90, 36, 0.3);
}

/*.about .feature-box:hover {*/

/*}*/
.mission .feature-box {
  padding: 24px;
  background: #47474733;
  margin: 0px;
  height: 250px !important;
  width: 46% !important;
  border: 1px solid #F15A244F !important;
  box-shadow: 0px 4px 4px 0px #00000040 !important;

}

.mission h4 {
  text-align: left;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  margin-top: 0px !important;
}

p.mission {
  text-align: left !important;
  line-height: 24px !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  padding: 0px !important;
}

.about .image-container {
  margin: 0 auto;
  margin-bottom: 8px;
  background: none;
}

.core-value h4.value {
  line-height: 32px;
  font-size: 16px;
  font-weight: 400 !important;
  color: #fff;
  margin: 0px;
}

.about .feature-box p {
  text-align: center;
  line-height: 18px;
  padding: 0px 30px;
  margin-top: 8px !important;
}

/* .about.banner-content {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
} */
.about.hero-content .overlay {
  position: absolute;
  padding-top: 0px;
  filter: grayscale(100%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* mix-blend-mode: Luminosity; */
  /* black overlay with 0.8 opacity */
  display: flex;
  /* align-items: center; */
}

.about-banner-content h1 {
  line-height: 50px;
  font-weight: 700;
  font-size: 44px;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #fff;
  --heading-color: #fff;
}

/* .feature-box:hover h4 {
  color: #f15a24;
} */

.features-cards .feature-box {
  height: 100%;
  padding: 36px 12px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 24px;
  display: inline-block;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.team-contact {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 30px;
}

.features-cards .feature-box h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 10px 0;
  /* height: 35px; */
}

.btn:disabled {
  background-color: var(--accent-color);
  opacity: .7;
}

.features-cards .feature-box p {
  font-size: 14px;
  margin-bottom: 0px;
  font-weight: 400 !important;
  color: #fff;
  line-height: 18px;
  margin-top: 14px;
}

.services .features-cards .feature-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px 16px;
  background: linear-gradient(132.89deg, #020D21 0%, #083587 294.77%);
  z-index: 1;
  border: 0.5px;
  height: 270px;
}

.services .features-cards .feature-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 0.5px;
  padding: 1px;
  border-radius: 10px;
  background: linear-gradient(131.74deg, #000000 3.46%, #959595 127.66%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.services .features-cards .feature-box {
  padding: 16px 16px;
  border: 0.5px;
  background: linear-gradient(132.89deg, #020D21 0%, #083587 294.77%);
  /* border: 0.5px solid transparent;  */
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  /* border-image-source: linear-gradient(131.74deg, #000000 3.46%, #959595 127.66%); */
  border-image-slice: 1;
  background-clip: padding-box;
  /* Ensures background doesn't overflow rounded corners */
  -webkit-background-clip: padding-box;
  /* For Safari */
  overflow: hidden;
  /* Helps in some browsers to apply border-radius visually */

  /* background: linear-gradient(114deg, #020D21, #083587); */
  /* border: 0.5px solid; */

  /* box-shadow: 0px 4px 4px 0px #00000040;  */
  /* border-image-source: linear-gradient(131.74deg, #000000 3.46%, #959595 127.66%);
  background: linear-gradient(132.89deg, #020D21 0%, #083587 294.77%); */
  position: relative;
  border-radius: 6px;
  /* background: linear-gradient(131.74deg, #000000 3.46%, #959595 127.66%); */
  /* padding: 16px; */
  /* Thickness of the border */
}

.aboutbg .features-cards .feature-box {
  padding: 16px 16px;
  border: 0.5px;
  background: linear-gradient(132.89deg, #020D21 0%, #083587 294.77%);
  /* border: 0.5px solid transparent;  */
  border-radius: 6px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  /* border-image-source: linear-gradient(131.74deg, #000000 3.46%, #959595 127.66%); */
  border-image-slice: 1;
  background-clip: padding-box;
  /* Ensures background doesn't overflow rounded corners */
  -webkit-background-clip: padding-box;
  /* For Safari */
  overflow: hidden;
  /* Helps in some browsers to apply border-radius visually */

  /* background: linear-gradient(114deg, #020D21, #083587); */
  /* border: 0.5px solid; */

  /* box-shadow: 0px 4px 4px 0px #00000040;  */
  /* border-image-source: linear-gradient(131.74deg, #000000 3.46%, #959595 127.66%);
  background: linear-gradient(132.89deg, #020D21 0%, #083587 294.77%); */
  position: relative;
  border-radius: 6px;
  /* background: linear-gradient(131.74deg, #000000 3.46%, #959595 127.66%); */
  /* padding: 16px; */
  /* Thickness of the border */
}

/*.services .features-cards .feature-box::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -1px;*/
/*  left: -1px;*/
/*  right: -1px;*/
/*  bottom:-1px;*/
/*  border-radius: 6px;*/
/*  background: linear-gradient(131.74deg, #000000 0.46%, #959595 127.66%);*/
/*  z-index: -1;*/
/*}*/
/* 
.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
} */
.featureicon-rounded {
  position: absolute;
  top: -24px;
  left: 43%;
  padding: 0px;
  background: #001733;
  padding: 2px 12px;
  width: 48px;
  border-radius: 50%;
  height: 48px;
  align-items: center;
  display: flex;
  justify-content: center;
  box-shadow: 0px -2px 6px 2px #F15A2480;
}

.Services-section .feature-box {
  padding: 16px;
  background: #002758;
  border-radius: 8px;
  text-align: center;
}

.Services-section .section-container {
  margin-top: 68px;
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  margin-top: 14px;
}

.feature-box p {
  font-size: 14px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# 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: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 14px;
  margin-bottom: 0;
  padding: 0px 36px;
  line-height: 18px;
  text-align: center;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  /* max-width: 300px; */
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  position: absolute;
  left: -190px;
  /* left: -38%; */
  top: -230px;
  max-width: 983px;
}

@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;
  }
}

@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) {
  .video-background {
    width: 100%;
    /* margin-top: 18px; */
  }

  .banner-content {
    position: absolute;
    top: 64% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100%;
  }

  /* .hero .hero-content h1 {
    line-height: 32px !important;
  } */
  .phone-mockup {
    display: none;
  }

  .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;
  }

  .testimonials-pr-5 {
    padding-right: 8px !important;
    padding-bottom: 20px !important;
    padding-left: 8px !important;
  }

  .testimonial-item .col-lg-4 {
    display: flex;
    justify-content: center;
    padding-top: 24px !important;
  }

  .stats .stats-item {
    padding: 0px !important;
  }

  .image-banner-about {
    height: 280px;
  }

  .image-banner-about h1 {
    font-size: 36px;
  }

  /* .section-heading {
    font-size: 32px !important;
    line-height: 44px !important;
  } */

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

  .video-banner {
    height: 100% !important;
  }

  .hero .hero-content {
    margin-bottom: 0rem !important;
  }

  .exp-section {
    justify-content: space-between;
  }

  .copyright {
    display: none !important;
  }

  .image-banner {
    height: 100% !important;
  }

  .divider {
    padding: 20px 0px !important;
  }

  /*.contact-form {*/
  /*  padding: 1rem !important;*/
  /*}*/

  /* .breadcrumb {
    margin-top: 50px !important;
  } */

  .padding-card {
    padding-right: 0px !important;
  }

  .sidebar-nav-links.floating {
    width: 100% !important;
  }

  .testimonials .section-heading {
    margin-bottom: 55px !important;
  }

  #navmenu ul li a.active::before {
    border-bottom: unset;
  }

  .navmenu .dropdown ul {
    flex-direction: column;
    margin: 0px;
    height: 240px;
    overflow: auto;
  }

  .navmenu li:last-child a {
    width: 100%;
  }

  .mobile-para-none {
    padding: 0px 16px;
  }

  .features-2 .feature-item .feature-content p {
    text-align: center;
  }

  /* .testimonials .testimonial-item .testimonial-img {
    height: 180px !important;
  } */

  .copyright {
    display: flex !important;
  }

  .copyright .footer-links {
    display: none !important;
  }

  .footer .footer-links {
    margin-bottom: 4px;
  }

  .mobile-para {
    width: 100% !important;
  }

  .sidebar-nav-links li.active,
  .sidebar-nav-links li {
    padding: 6px 6px !important;
  }

  .sidebar-nav-links {
    width: 100% !important;
  }
}

@media (max-width: 575px) {
  .mobile-para {
    width: 100% !important;
  }

  .testimonials .testimonial-container {
    /* height: 665px !important; */
    height: auto !important;
  }

  .testimonials .testimonial-item .testimonial-img {
    margin-bottom: 30px !important;
  }

  .stats .stats-item p {
    font-size: 22px !important;
  }

  .action-buttons {
    display: none;
  }

  /* .testimonials .testimonial-item .testimonial-img {
    height: 100% !important;
    width: 100% !important;
  } */

  .footer .footer-links {
    margin-bottom: 4px;
  }

  .copyright {
    display: flex !important;
  }

  .copyright .footer-links {
    display: none !important;
  }

  .call-to-action .container {
    border-radius: 0;
  }

  .mobile-para,
  .mobile-para-none {
    /* display: none; */
  }

  .image-banner .overlay {
    padding-top: 22px !important;
    height: auto !important;
  }

  .image-banner h2 {
    margin-top: 14px;
    margin-bottom: 10px !important;
    font-size: 32px !important;
  }

  .break-word {
    display: block;
    /* Forces line breaks for smaller screens */
  }

  .mt-5 {
    margin-top: 0px !important;
  }

  .hero .btn-primary {
    padding: 0.75rem 1.5rem !important;
  }
}

.break-word {
  display: inline;
  /* Default behavior for larger screens */
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
  filter: grayscale(100);
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 42px;
}

/* .testimonials .testimonial-item .testimonial-img {
  width: 100% !important;
  height: 100% !important;
} */

.swiper-button-prev {
  left: 54px !important;
}

.swiper-button-prev,
.swiper-button-next {
  height: 2px !important;
  width: 24px !important;
}

.background-video-container {
  background-size: cover;
  height: 100% !important;
  align-items: center;
}

.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);
}

.text-justify {
  text-align: justify;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  /* background-color: #002758; */
  /* background: linear-gradient(198.75deg, #010B25 -25.54%, #000000 87.33%); */

  /* box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08); */
  /* padding: 30px; */
  /* position: relative; */
  height: 100%;
  border-radius: 8px;
}


.our-capabilities {
  height: 220px !important;
}

.testimonials .testimonial-container {
  /* height: 350px; */
  display: flex;
  align-items: center;

  border-radius: 8px;
  /* background: linear-gradient(198.75deg, #010B25 -25.54%, #000000 87.33%);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08); */
}

.testimonials {
  position: relative;
  margin-bottom: 10px;
  background-color: #000;
  margin-top: 60px;
}

.float-right {
  float: right;
}

.testimonials-pr-5 {
  padding-right: 48px;
  /* padding-left: 20px; */
}

.testimonials .testimonial-item .testimonial-img {
  /* width: 90px;*/
  height: 200px;
  width: 200px;
  border-radius: 50%;
  float: left;
  /* margin: 0 10px 0 0; */
}

.testimonials-pr-5 p {
  font-size: 16px;
}

.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 {
  margin: 15px 0 0 0;
  padding: 0;
  text-align: justify;
}

/* .padding-card{
  padding-right:34px;
} */
.small-divider {
  width: 80px;
  height: 4px;
  border-radius: 8px;
  background: #F15A24;
  display: block;
  margin-right: 12px;
}

.large-divider {
  width: 260px;
  height: 4px;
  border-radius: 8px;
  background: #F15A24;
  display: block;
}

.breadcrumb {
  margin-top: 30px;
}

.swiper-button-prev,
.swiper-button-next {
  color: #ede9e9;
  /* Arrow color */
  width: 40px;
  height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
  /* Arrow size */
}

.swiper-button-prev {
  left: 10px;
  /* Position left arrow */
}

.swiper-button-next {
  right: 10px;
  /* Position right arrow */
}

.action-buttons {
  position: absolute;
  top: 14%;
  right: 0;
  width: 136px;
}

.footer-contact img {
  width: 12px;
  object-fit: contain;
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.line-img {
  border-image: url(../img/home/cyber.svg);
  position: absolute;
  left: 0px;
  top: 40%;
  height: 30px;
  width: 30px;
}

.stats .stats-item {
  padding: 0px 30px;
  width: 100%;
}

.section-border {
  border-left: 1px solid transparent;
  /* padding: 15px; */
  border-image-source: url(../img/home/section-border.svg);
  border-image-slice: 30;
  height: 100%;
  position: relative;
}

.section-border-1 {
  border-right: 1px solid transparent;
  /* padding: 15px; */
  border-image-source: url(../img/home/section-border.svg);
  border-image-slice: 30;
  height: 100%;
  position: relative;
}

.section-border-top {
  border-right: 1px solid transparent;
  /* padding: 15px; */
  border-image-source: url(../img/home/section-border-top.svg);
  border-image-slice: 30;
  height: 100%;
  position: relative;
}

.section-border-right {
  border-right: 1px solid transparent;
  /* padding: 15px; */
  border-image-source: url(../img/home/border-left.svg);
  border-image-slice: 30;
  height: 100%;
  position: relative;
  /* transform: translateY(-100%) scale(1); */
}

.section-border-left {
  border-left: 1px solid transparent;
  /* padding: 15px; */
  border-image-source: url(../img/home/border-left.svg);
  height: 100%;
  border-image-slice: 30;
  position: relative;
  /* transform: translateY(-100%) scale(1); */
}

.stats p {
  text-align: center;
}

.section-border-bottom {
  border-bottom: 1px solid transparent;
  /* padding: 15px; */
  border-image-source: url(../img/home/border-bottom.svg);
  border-image-slice: 30;
  margin-top: 0px;
}

.capacity-border-bottom {
  border-top: 1px solid transparent;
  border-image-source: url(../img/home/cap-border-bottom.svg);
  border-image-slice: 30;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 34px;
  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: #fff;
  padding: 0;
  margin: 0;
  font-size: 25px;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Video Banner Section
--------------------------------------------------------------*/
.video-banner {
  position: relative;
  width: 100%;
  height: 580px;
  overflow: hidden;
}

.video-background {
  width: 100%;
  object-fit: cover;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers the screen */
  object-position: center;
  /* Centers the video content */
  z-index: -1;
  /* Sends the video behind other elements */
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 38%;
  transform: translate(-50%, -50%);

}

.image-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 64px;
  height: 458px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  /* black overlay with 0.8 opacity */
  display: flex;
  /* align-items: center; */
}

.hero-content .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 64px;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  /* black overlay with 0.8 opacity */
  display: flex;
  /* align-items: center; */
}

.image-banner {
  /* background-image: url('../img/services/header-img1.png'); */
  background-repeat: no-repeat;
  background-size: cover;
  /* object-fit: cover; */
  height: 411px;
  width: 100%;
  display: flex;
  overflow: hidden;
  /* align-items: center; */
}

.application-bg {
  background-image: url('../img/banner-images/application.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 392px; */
}

.cloud-bg {
  background-image: url('../img/banner-images/cloud.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.cyber-bg {
  background-image: url('../img/banner-images/cyber.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.analytics-bg {
  background-image: url('../img/banner-images/analytics.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.erp-bg {
  background-image: url('../img/banner-images/erp.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.infrastructure-bg {
  background-image: url('../img/banner-images/infrastructure.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.automation-bg {
  background-image: url('../img/banner-images/automation.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.mobility-bg {
  background-image: url('../img/banner-images/mobility.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.performance-bg {
  background-image: url('../img/banner-images/performance.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.product-bg {
  background-image: url('../img/banner-images/product.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.testing-bg {
  background-image: url('../img/banner-images/testing.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.automotive-bg {
  background-image: url('../img/banner-images/automotive.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.banking-bg {
  background-image: url('../img/banner-images/banking.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.education-bg {
  background-image: url('../img/banner-images/education.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.energy-bg {
  background-image: url('../img/banner-images/energy.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.erp-bg {
  background-image: url('../img/banner-images/erp.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.healthcare-bg {
  background-image: url('../img/banner-images/healthcare.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.insurance-bg {
  background-image: url('../img/banner-images/insurance.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.logistics-bg {
  background-image: url('../img/banner-images/logistics.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.manufacturing-bg {
  background-image: url('../img/banner-images/manufacturing.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.media-bg {
  background-image: url('../img/banner-images/media.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.oil-bg {
  background-image: url('../img/banner-images/oil.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.realestate-bg {
  background-image: url('../img/banner-images/realestate.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.retail-bg {
  background-image: url('../img/banner-images/retail.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.telecom-bg {
  background-image: url('../img/banner-images/telecom.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.travel-bg {
  background-image: url('../img/banner-images/travel.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}

.wireless-bg {
  background-image: url('../img/banner-images/wireless.png');
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 400px; */
}


.image-banner .container {
  z-index: 2;
  position: relative;
}

/* .image-banner.automotive{
    background-image: url('../img/services/header-services.png') !important;
  background-size: cover;
  height: 350px;
  width: 100%;
  display: flex;
} */

.sidebar-nav-links {
  position: absolute;
  top: 10px;
  /* 240px header + 20px spacing */
  right: 0;
  width: 250px;
  padding: 0px;
  /* transition: all 0.3s ease-in-out; */
}

.sidebar-nav-links.floating {
  position: sticky;
  top: 84px;
  /* When floating, keep 20px from the top */
  width: 250px;
  right: 66px;
}

.sidebar-top {
  padding-top: 30px;
}

.sidebar h6 {
  font-size: 16px;
  font-weight: medium;
  margin-bottom: 24px;
}

.sidebar-nav-links {
  padding: 0px;
}

.sidebar-nav-links li {
  list-style: none;
  margin-bottom: 6px;
  border: 2px solid transparent;
  border-image-source: linear-gradient(1deg, transparent 0%, transparent 100%);
  border-image-slice: 1;
  padding: 6px 22px;
}

.sidebar-nav-links li:hover {
  border: 2px solid transparent;
  /* border-image-source: linear-gradient(1deg, #F15A24 0%, rgba(153, 153, 153, 0) 100%); */
  border-image-slice: 1;
  padding: 6px 24px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  width: 100%;
}

.sidebar-nav-links li.active {
  border: 2px solid transparent;
  border-image-source: linear-gradient(1deg, #F15A24 0%, rgba(153, 153, 153, 0) 100%);
  border-image-slice: 1;
  padding: 6px 24px;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  width: 100%;
}

.sidebar-nav-links li:hover a,
.sidebar-nav-links li.active a {
  color: #fff;
  /* pointer-events: none; */
  cursor: pointer;
}

.sidebar-nav-links li a {
  color: #676767;
  /* pointer-events: none; */
  cursor: pointer;
}

.sidebar {
  /* height: 450px; */
  height: auto;
  border-left: 1px solid transparent;
  padding: 0px;
  border-image-source: url(../img/services/divider.png);
  border-image-slice: 30;
  position: relative;
  /* padding-left: 28px; */
}

.sidebar h6 {
  border: 2px solid transparent;
  border-image-source: linear-gradient(1deg, #F15A24 0%, rgba(153, 153, 153, 0) 100%);
  border-image-slice: 1;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 26px;
}

/*p {*/
/*  text-align: justify;*/
/*}*/

.mobile-para {
  font-size: 20px;
  width: 71%;
  line-height: 28px;
}

.modal-90w {
  max-width: 90% !important;
  width: 90%;
}

/* 
.section-heading {
  font-size: 46px;
} */
.feature-box.height-260 {
  height: 260px;
}

.modal-header {
  padding: 0px;
  border: none;
}

.modal-header .btn-close {
  background-color: #fff;
  padding: 8px;
  margin-bottom: 4px;
     width: 10px;
    font-size: 10px;
    height: 10px;
}

.modal-content {
  padding: 20px;
  background-color: #010d2a !important;
}

.image-container {
  background: #01326B;
  box-shadow: 0px 4px 4px 0px #00000040;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 32px;
  height: 32px;
}

.footer-term li {
  padding: 0px 6px !important;
  font-family: 'Poppins';
}

.footer-term li a {
  color: #fff !important;
  text-transform: uppercase;
  font-weight: 500 !important;
  font-size: 13px;
}

.image-banner h2 {
  margin-top: 14px;
  margin-bottom: 40px;
  font-size: 32px !important;
}

/*--------------------------------------------------------------
# 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 {
  padding: 1rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}
.contact-form-border{
border: 0.5px solid;
  border-image-source: linear-gradient(131.74deg, #000000 3.46%, #959595 127.66%);
  border: 1px solid #1f1f1f;
  position: relative;
   padding: 2rem;
  border: 0.5px solid #1f1f1f;
}
 .contact-form {
  position: relative;  
  padding: 2rem;
  border-radius: 6px;
  height: 100%;
  width: 100%;
}

/*.contact-form::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: -1px;*/
/*  left: -1px;*/
/*  right: -1px;*/
/*  bottom: -1px;*/
/*  border-radius: 6px;*/
/*  background: linear-gradient(131.74deg, #000000 0.46%, #959595 127.66%);*/
/*  z-index: -1;*/
/*}*/
.form-control {
  background-color: transparent;
  border: 1px solid #D9D9D9;
  color: #fff;
  height: 48px;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 12px;
}

.save,
.save:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3sease;
  width: 140px;
  height: 42px;
}

.feature-box p {
  text-align: start;
}

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

input:focus,
textarea:focus {
  color: #fff;
  background-color: transparent !important;
  outline: none;
}

@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;
}

.padding-30 {
  padding-right: 30px;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

/* //ERP tab section */
.erp-tab-section {
  margin-top: 54px;
  width: 100%;
}

.erp-tab-section .nav-item .nav-link {
  color: #fff;
}

.erp-tab-section .nav.nav-tabs {
  border-radius: 4px;
  display: inline-flex;
  border: 1px solid rgba(241, 90, 36, 1);
}

.erp-tab-section .nav-link.active {
  border-radius: 4px;
  background-color: rgba(241, 90, 36, 1);
  border-color: rgba(241, 90, 36, 1);
  color: #fff;
}

.tawk-min-container .tawk-button {
  width: 48px !important;
  height: 48px !important;
}

.erp-tab-section .nav-link:hover {
  border-radius: 4px;
  background-color: rgba(241, 90, 36, 1);
  border-color: rgba(241, 90, 36, 1);
  color: #fff;
}

/* css for chatbot */

.tawk-max-container .tawk-card-primary {
  background-color: #ff7f0a !important;
}

.card-container::before {
  background-color: #ff7f0a !important;
}

.tawk-form-input {
  background-color: #ff7f0a !important;
}

.tawk-button {
  background-color: #ff7f0a !important;
  border: 1px solid #ff7f0a !important;

}

.section-para {
  font-size: 20px;
  margin-bottom: 40px;
}

.gradient-line {
  position: absolute;
  left: -12px;
  top: 30%;
}

.gradient-line-section {
  position: absolute;
  left: -1px;
  top: 8%;
}

.about-bg {
  /* background-image: url('../img/about/about-bg.png'); */
  /* background-size: cover;/ */
  /* opacity: .7; */
  background-position: center;
  background-repeat: no-repeat;
  background: linear-gradient(180deg, #001035 0%, #000613 100%);

}

.image-banner-about h1 {
  font-size: 62px;
}

.image-banner-about {
  background-image: url('../img/about/about.png');
  background-size: cover;
  height: 380px;
  width: 100%;
  display: flex;
  /* align-items: center; */
}

.gradient-bottom-line {
  background-image: url('../../assets/img/home/border-bottom1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  /* left: -12px; */
  height: 1px;
  right: 0px;
  top: 47%;
  width: 100%;
}

.gradient-bottom-line-under {
  background-image: url('../../assets/img/home/border-bottom1.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  /* left: -12px; */
  height: 1px;
  right: 0px;
  margin: 0px;
  top: 10%;
  top: 3%;
  width: 100%;
}

/* ///about us */

.value-item {
  text-align: left;
  margin-bottom: 40px;
}

.value-icon {
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 16px;
}

.value-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: normal;
}

.value-description {
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
}

.quote-section {
  text-align: center;
  margin: 60px 0;
  padding: 0 20px;
}

.quote-text {
  font-size: 22px;
  line-height: 26px;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 10px;
}

.quote-author {
  font-size: 34px;
  color: #ffffff;
  font-style: italic;
}

.team-section {
  margin: 60px 0;
}

.offset-1 {
  margin-left: 3.5% !important;
}

.teamsection-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 40px;
}

.team-member {
  width: 90%;
  text-align: center;
  margin-bottom: 30px;
}

.member-photo {
  width: 100%;
  height: 100%;
  background-color: #333333;
  border-radius: 8px 8px 0px 0px;
  /* margin: 0 auto 15px; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 12px;
}

.member-photo img {
  width: 100%;
}

.name-container {
  background-color: #333333;
  border-radius: 8px;
  margin: 0 auto 15px;
  border-radius: 0px 0px 8px 8px;
  padding: 16px 12px;
}

.mission-item-container {
  background-image: url('../../assets/img/about/mission.png');
  width: 90%;
  height: 100%;
  background-repeat: repeat;
  object-fit: cover;
  padding: 20px;
}

.vision-item-container {
  background-image: url('../../assets/img/about/vission.png');
  width: 90%;
  object-fit: cover;
  height: 100%;
  background-repeat: repeat;
  padding: 20px;
}

.member-name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
}

.mission-vission-cards .section-title {
  text-align: left;
  font-size: 18px;
  margin-bottom: 0px;
}

.member-title {
  text-align: center;
  font-size: 16px;
  color: #F2F2F2;
}

.collaborators-section {
  margin-top: 30px;
}

.collaborator-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 28px;
  background-color: #2a2a2a;
  border-radius: 8px;
}

.collaborator-info {
  padding-left: 30px;
}

.collaborator-photo {
  width: 50px;
  height: 50px;
  background-color: #333333;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 10px;
}

.quote-section.section {
  margin: 0px;
  padding: 0px;
}

.sign {
  font-family: 'Pecita', sans-serif !important;
}

.collaborator-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.collaborator-title {
  font-size: 12px;
  color: #cccccc;
}

@media (max-width: 768px) {


  .menu {
    flex-direction: column;
    align-items: stretch;
  }

  /* .menu li {
    text-align: left;
    border-bottom: 1px solid #ddd;
  } */
  .main-container {
    padding: 20px 0;
  }

  .quote-section {
    margin: 40px 0;
  }

  .quote-text {
    font-size: 14px;
  }

  .values-section {
    margin-bottom: 2px !important;
  }

  /* .member-photo {
    width: 100px;
    height: 120px;
  } */
  .features-cards .feature-box {
    padding: 10px 12px;
  }

  .collaborator-item {
    padding: 12px;
  }
}

@media (max-width: 576px) {
  .value-item {
    margin-bottom: 30px;
  }

  .value-description {
    font-size: 12px;
  }

  .quote-text {
    font-size: 13px;
  }
}

/* //dotted images */
.brand-name {
  font-size: 16px;
  text-align: center;
  margin-top: 25px;
}

.differentiator-item {
  border: 0.5px solid rgba(241, 90, 36, 1);
  border-radius: 10px;
  padding: 10px;
  gap: 10px;
  background: rgba(73, 35, 35, 1);
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  width: 270px;
  margin: 10px 0px;
  font-weight: 500;
}

.central-hub {
  align-items: center;
  width: 106px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.optimize-text {
  text-align: center;
}

.differentiator-features-section {
  background-image: url('../img/industries/technerds-section-bg1.png');
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -49px;
  top: -10px;
  z-index: -1;
  margin-bottom: 18px;
  margin-top: 10px;
}

.optimize-circle {
  width: 104px;
  height: 104px;
  background-color: rgba(73, 35, 35, 1);
  border-radius: 100%;
  border: 1px solid rgba(241, 90, 36, 1);
}

.optimize-text {
  background: rgba(241, 90, 36, 0.8);
  backdrop-filter: blur(1000px);
  border-radius: 10px;
  padding: 6px 8px;
  gap: 10px;
  margin-top: 16px;
}

.logo-section {
  height: 112px;
  width: 162px;
}

.about-sus-container h1 {
  font-size: 48px;
  line-height: 48px;
}

.about-sus-container .about-para {
  font-size: 18px;
  line-height: 28px;
}

.member-photo-advisory img {
  width: 100%;
}

/* career page design  */
.values-section {
  padding: 40px 0px 20px 0px;
  background: linear-gradient(135deg, var(--primary-bg) 0%, #16213e 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.value-section-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 46px;
}

.value-section-subtitle h2 {
  color: rgba(38, 43, 64, 1);
  font-size: 74px;
  line-height: 88px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-section-subtitle .subtitle-highlight {
  color: rgba(250, 100, 0, 1);
}

.value-section-subtitle p {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 32px;
}

.value-card {
  box-shadow: 0px 120px 120px -80px rgba(76, 86, 115, 0.08);
  background: rgba(38, 43, 64, 1);
  border-radius: 8px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 107, 53, 0.01) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-2px) scale(1.00);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 107, 53, 0.2);
}

.card-title {
  margin-bottom: 20px;
  margin-top: 12px;
  font-size: 45px;
}

.highlight {
  color: #FA6400;
}

.card-description {
  font-size: 18px;
  line-height: 32px;
  height: 94px;
  text-align: left;
}

.card-image {
  width: 100%;
  height: 100%;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.emoji-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 100%;
  font-size: 3rem;
  flex-wrap: wrap;
}

.jobs-section {
  padding: 80px 0;
  /* background-image: url('../img/career/hiring.png'); */
  background-repeat: no-repeat;
  position: relative;
  height: 800px;
  /* height: 100%; */
  background-size: cover;
  background-position: end;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);


}

.jobs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* height:800px; */
  background-image: url('../img/career/hiring.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  /* background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%); */

  /* background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%); */
}

.jobs-hero {
  /* text-align: center;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);

  background-size: cover;
  background-position: center; */
  /* left: 0;
  position: absolute;
  bottom: -3px; */
  width: 100%;
}

.jobs-hero h2 {
  font-size: 58px;
  font-weight: 700;
  line-height: 56px;
  /* margin-bottom: 20px; */
}

.jobs-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 790px;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 40px 0px;
}

.job-listing {
  display: flex;
  justify-content: space-between;
  border-radius: 24px;
  padding: 12px 30px;
  margin-bottom: 10px;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  /* transition: all 0.3s ease; */
  position: relative;
  overflow: hidden;
  background: rgba(18, 18, 18, 0.85);

}

.modal-job-listing {
  display: flex;
  justify-content: space-between;
  border-radius: 24px;
  /* padding: 12px 30px; */
  margin-bottom: 10px;
}
.modal-team-detail p{
    margin-top:12px;
    line-height:26px;
}
.modal-job-title {
  font-size: 32px;
  font-weight: 700;
}

.modal-join-team {
  font-size: 28px;
  font-weight: 700;
  margin-top: 28px;
}

.modal-team-detail {
  font-size: 20px;
  font-weight: 400;
}

.modal-modal-role {
  font-size: 28px;
  font-weight: 700;
  margin-top: 40px;
}

.modal-role {
  padding: 8px 0px 30px 0px;
}

.modal-appy-position {
  font-size: 28px;
  line-height: 32px;
}

.job-listing::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-orange);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.job-listing:hover::before {
  transform: scaleY(1);
}

/* .job-listing:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
} */
.location {
  font-size: 12px;
  text-transform: uppercase;
  color: #989898;
  font-weight: 700;
}

.job-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.job-department {
  color: var(--accent-orange);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.job-description {
  color: rgba(128, 128, 128, 1);
  line-height: 20px;
  margin-top: 4px;
  font-size: 16px;
  /* margin-bottom: 15px; */
}

.job-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-left: 40px;
}

.job-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.job-detail {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.job-detail span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(152, 152, 152, 1);
}

.apply-btn {
  color: rgba(241, 90, 36, 1);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  /* transition: all 0.3s ease; */
  /* text-decoration: none; */
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(241, 90, 36, 1)
}

.apply-btn:hover {
  background: #e55a2b;
  padding: 10px 25px;
  /* transform: translateY(-2px); */
  color: white;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2rem;
  }

  .jobs-hero h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    line-height: 22px;
  }

  .location,
  .job-meta {
    font-weight: 700;
    padding: 20px 0px;
    text-align: center;
  }

  .value-card {
    /* padding: 30px 20px; */
    margin-bottom: 20px;
  }

  .values-section,
  .jobs-section {
    padding: 50px 0;
  }

  .job-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-details {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .job-listing {
    display: block;
  }

  .navmenu li:last-child a.contactus {
    width: 39%;
    margin-left: 20px;
  }

  .footer .footer-links ul a {
    line-height: 18px;
  }

  .our-capabilities {
    height: 164px !important;
  }

  .footer h4 {
    font-size: 18px;
    /* font-weight: bold; */
    position: relative;
    padding: 20px 0px 8px 0px;
  }

  .jobs-hero {
    padding: 40px 20px;
  }

  .job-listing {
    padding: 20px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .jobs-hero h2 {
    /* font-size: 1.8rem; */
  }
}

.hero-section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  /* min-height: 100vh; */
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 61px;
  color: #ff6b35;
  margin-bottom: 2rem;
  top: 124px;
  line-height: 40px;
  letter-spacing: 2px;
  transform: rotate(-2deg);
  display: inline-block;
  position: absolute;
  width: 900px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transform: rotate(353deg);
}

.cta-button {
  background: rgba(241, 90, 36, 1);
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  bottom: -158px;
  position: absolute;
  /* transition: all 0.3s ease; */
  /* box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3); */
}

.cta-button:hover {
  /* transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4); */
  color: #fff;
  /* background: linear-gradient(45deg, #ff5722, #ff6b35); */
}

.photo-collage {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.photo-item.medium-photo {
  bottom: -35px;
  left: 51px;
  position: absolute;
}

.photo-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4); */
  transition: all 0.3s ease;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.photo-item:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.photo-item:hover img {
  transform: scale(1.1);
}

/* Photo positioning */
.photo-1 {
  top: 0;
  right: 15%;
  width: 180px;
  height: 140px;
  /* transform: rotate(5deg); */
}

.photo-2 {
  top: 20%;
  right: 35%;
  width: 160px;
  height: 120px;
  /* transform: rotate(-3deg); */
}

.photo-3 {
  top: 10%;
  right: 0;
  width: 200px;
  height: 150px;
  /* transform: rotate(8deg); */
}

.photo-4 {
  top: 45%;
  right: 10%;
  width: 220px;
  height: 160px;
  /* transform: rotate(-5deg); */
}

.photo-5 {
  top: 65%;
  right: 35%;
  width: 190px;
  height: 140px;
  /* transform: rotate(3deg); */
}

/* Tablet Styles */
@media (max-width: 992px) {
  .chooseus .col-lg-3 {
    display: flex;
  }

  .hero-title {
    margin-top: 50px;
  }

  .hero-subtitle {
    transform: unset;
  }

  .jobs-section {
    height: 483px;
  }

  .navmenu .dropdown ul {
    height: auto;
  }

  .section-heading {
    font-size: 35px;
  }

  .differentiator-features-section {
    background-image: unset;
  }

  .logo-section {
    height: 112px;
    width: 162px;
    margin: 0 auto;
  }

  .differentiator-item {
    width: 100%;
  }

  .central-hub {
    width: auto;
    margin-bottom: 20px;
  }

  .company {
    display: none;
  }

  .hero-content {
    margin-top: 0px;
  }

  .hero-section {
    min-height: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .card-title {
    font-size: 36px;
  }

  .jobs-hero p {
    padding: 6px 0px;
  }

  .jobs-hero {
    padding: 0px 10px;
  }

  .jobs-section::before {
    background-size: cover;
  }

  .hero-subtitle {
    font-size: 2rem;
    position: static;
    width: auto;
  }

  .cta-button {
    position: static;
    margin-bottom: 40px;
  }

  .photo-collage {
    min-height: 400px;
    margin-top: 3rem;
  }

  .hero-section img {
    width: 100%;
  }

  .photo-1 {
    width: 150px;
    height: 120px;
    right: 10%;
  }

  .photo-2 {
    width: 140px;
    height: 100px;
    right: 30%;
  }

  .photo-3 {
    width: 170px;
    height: 130px;
    right: 0;
  }

  .photo-4 {
    width: 180px;
    height: 140px;
    right: 5%;
  }

  .photo-5 {
    width: 160px;
    height: 120px;
    right: 25%;
  }

  .card-description {
    font-size: 18px;
    line-height: 28px;
    height: 140px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .chooseus .col-lg-3 {
    display: block;
  }

  .h-40 {
    height: unset !important;
  }

  .feature-box.our-capabilities {
    margin-bottom: 20px;
  }

  .jobs-section::before {
    background-size: contain;
  }

  .jobs-section {
    height: 238px;
  }

  .hero-section img {
    width: 100%;
  }

  .hero-section {
    padding: 40px 0;
    min-height: auto;
    height: 100% !important;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .photo-collage {
    position: relative;
    min-height: 300px;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
  }

  .photo-item {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    height: 120px !important;
    transform: none !important;
  }

  .photo-5 {
    grid-column: span 2;
    height: 140px !important;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .photo-collage {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .photo-item {
    height: 100px !important;
  }

  .photo-5 {
    grid-column: span 1;
    height: 100px !important;
  }
}

/* Floating animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(5deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* .photo-1 { animation: float 6s ease-in-out infinite; }
        .photo-2 { animation: float 8s ease-in-out infinite 1s; }
        .photo-3 { animation: float 7s ease-in-out infinite 2s; }
        .photo-4 { animation: float 9s ease-in-out infinite 3s; }
        .photo-5 { animation: float 5s ease-in-out infinite 4s; } */

@media (max-width: 768px) {
  .photo-item {
    animation: none !important;
  }
}


.collage-container {
  /* max-width: 800px; */
  height: 420px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  margin-top: 50px;
}

.photo-item {
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); */
  margin-bottom: 15px;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.impact-overlay {
  position: relative;
}

.impact-text {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  color: #ff6b35;
  font-size: 2rem;
  font-weight: bold;
  font-family: cursive;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Specific heights for different image containers */
.small-photo {
  height: 137px;
  position: absolute;
  bottom: 142px;
  border-radius: 20px;
  left: 0px;
}

.photo-item1.small-photo img {
  border-radius: 20px;
  width: 132px;
}

.medium-photo {
  height: 134px;
}

.photo-item1.extra-large-photo {
  height: 255px;
}

.photo-item1.extra-large-photo img {
  height: 255px;
  width: 100%;
  border-radius: 20px;
}

.photo-item1.large-photo {
  height: 166px;
}

.photo-item1.large-photo img {
  width: 100%;
  border-radius: 20px;
  height: 166px;
}

.large-photo {
  height: 132px;
  position: relative;
  top: -20px
}

.extra-large-photo {
  height: 303px;
}

.photo-item1.medium-photo1 img {
  height: 236px;
  width: 100%;
  margin-top: 30px;
  border-radius: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .modal-job-title {
    font-size: 26px;
}
.modal-join-team {
    font-size: 34px;
}
.send-resume
 {
    font-size: 12px !important;
    text-align:left;
}
.mail-content .apply-btn{
    width: 158px;
    padding: 9px 16px;
    text-align:center;
}
.modal-body {
    padding:0px;
}

.mail-content img {
    height: 64px;
    display: none;
}
.apply-btn{
/*width: 166px;*/
    padding: 9px 16px;
    text-align:center;
}
    .team-member{
        width:100%;
    }
  .circle-img-home {
    display: none;
  }

  #features-cards .row {
    margin: 0px;
  }

  #features-cards .section-border-left {
    margin: 0px;
  }

  .small-photo {
    height: 150px;
  }

  .footer .footer-links ul li {
    padding: 4px 0;
  }

  .about-banner-content h1 {
    font-size: 32px;
  }

  .job-meta {
    margin-left: 0px;
  }

  .mission .feature-box {
    width: 93% !important;
    height: 324px !important;
    margin-bottom: 16px;
    margin: 12px;
  }

  .teamsection-title {
    font-size: 40px;
  }

  .core-value {
    padding: 2px 6px;
  }

  .values-section,
  .jobs-section {
    padding: 0px 0;
  }

  .about .feature-box {
    /*width: 100%;*/
    width: 97%;
        margin: 20px auto;
  }
  .social-links{
    justify-content: center;
  }
.footer .copyright p{
    text-align:center;
    font-size:12px;
}
  .medium-photo {
    height: 180px;
  }

  .large-photo {
    height: 220px;
  }

  .extra-large-photo {
    height: 250px;
  }

  .impact-text {
    font-size: 1.5rem;
    left: 15px;
  }
}

@media (max-width: 576px) {
  .collage-container {
    padding: 10px;
  }

  .photo-item {
    margin-bottom: 10px;
  }

  .small-photo,
  .medium-photo {
    height: 140px;
  }

  .large-photo,
  .extra-large-photo {
    height: 200px;
  }

  .impact-text {
    font-size: 1.2rem;
  }
}

.about-icon {
  width: 26px;
}

.social {
  margin-top: 8px;
}

.hero-section img {
  width: 100%;
}

.padding-card p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
}

.h-100 {
  height: 100px;
}

.h-40 {
  height: 40px;
}

.office-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom:12px;
}

.send-resume {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin: 0px;
}

.vh-80 {
  height: 80vh !important;
}

.address-line {
  font-size: 16px;
  font-weight:400;
}

.rc-anchor-light {
  background: transparent;
  color: #fff;
}

.mail-content {
  box-shadow: 0px 4px 40px 2px #F15A2433;
  border: 1px solid #F15A2480;
  border-radius: 8px;
  padding: 16px;
}

.mail-content img {
  height: 64px;
}

/* Smooth rotation animation for image on hover */

/* Container zoom and image rotation animation */
.feature-box {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.feature-box:hover {
  transform: scale(1.05);
  /* border: 1px solid #eee;
    border: 1px solid rgb(67, 66, 66); */
}

/* .image-container img{
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}
 .feature-box:hover .image-container img{
  transform: rotate(360deg);
} */


.image-container-hover img {
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}

.feature-box:hover .image-container-hover img {
  transform: rotate(15deg);
}
/*.image-container-hover h4.value{*/
/*   display:none; */
/*}*/
.about-video {
  opacity: .4;
}

.bg-about-bottom {
  background: linear-gradient(84.62deg, #000000 -40.45%, #010F2F 77.46%);
  transform: rotate(-90deg);
  position: absolute;
  padding-top: 0px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Target the reCAPTCHA container */
.g-recaptcha {
  background-color: transparent !important;
}

/* Remove background of the widget wrapper (may help depending on how it's embedded) */
.g-recaptcha>div {
  background-color: transparent !important;
}
.rc-anchor-light {
    background:transparent !important;
    color: #000;
}
.company-name{
 font-size:16px;   
}
.form-control:focus{
      box-shadow: none;  
}
input::placeholder,
textarea::placeholder {
    color: #373636 !important;
    opacity: 1;
}
.top-move{
    position: relative;
    top: -11px;
    height:130px;
}
.homeh-100{
    height:200px !important;
}
.iso-container {
    width: 90%;
    margin-left: 30px;
}
 /*.navmenu .active{*/
 /*     color:#fff !important;*/
 /* }*/