@font-face {
  font-family: "Poppins-Regular";
  src: url(../webfonts/Poppins-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins-Light";
  src: url(../webfonts/Poppins-Light.ttf);
}

@font-face {
  font-family: "Poppins-Medium";
  src: url(../webfonts/Poppins-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins-SemiBold";
  src: url(../webfonts/Poppins-SemiBold.ttf);
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url(../webfonts/Poppins-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
}
html,
body {
  height: 100%;
  color: #000;
  background: #fff;
  font-family: "Poppins-Regular", sans-serif;
}
.clr-green {
  color: #6aad47;
}
/* header navbar */
.nav-holder .nav-link {
  font-weight: 500;
  font-size: 16px;
  color: #000;
}
.nav-holder .container-fluid {
  padding: 0 !important;
}
.nav-holder .navbar-nav li.dropdown ul li a:hover {
  background: #6aad47 !important;
  color: #fff;
}
.nav-holder .btn-link {
  color: #007bff;
}
.nav-link.active {
  color: #0d6efd;
  font-weight: bold;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  position: absolute;
  z-index: 999;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-holder .dropdown-menu {
  border-top: 3px solid #6aad47;
}
.nav-holder .dropdown-item {
  border-bottom: 1px solid #ccc;
}
/* search form */

.search-form {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  width: 0;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 2px 10px rgb(215 215 215);
}
.search-form.active {
  width: 250px;
  opacity: 1;
}
.search-input {
  width: 100%;
}
/* search form */
/* header navbar */
/* banner home */
.banner-holder {
  background: #000d28 url("../images/home-main-banner.avif") no-repeat center
    top;
  width: 100%;
  background-size: cover;
}
.banner-txt {
  color: #fff;
  padding: 12em 0;
}
.banner-wp {
  padding: 5em 0;
}
.banner-txt h1 {
  font-weight: 600;
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 1.25rem;
}
.banner-txt p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.625rem;
  margin-bottom: 2.625rem;
  font-family: "Poppins-Light";
}
.btnDefault {
  background: transparent;
  color: #fff;
  border-radius: 6px;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.625rem;
  padding: 0.5rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  border: 1px solid #fff;
  text-decoration: none;
  font-family: "Poppins-Light";
}
.btnDefault:hover,
.btnDefault:focus,
.btnDefault:active {
  background: #5aa731;
  color: #fff;
  border: 1px solid transparent;
  outline: none;
}
.btnDefault .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btnDefault:hover .arrow {
  transform: translateX(6px);
}

.txt-holder {
  margin: 10em 0;
}
.btn-header .btnDefault {
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  line-height: 18px;
  background: #6aad47;
  min-width: 160px;
  justify-content: center;
  padding: 15px;
}

.btn-header .btnDefault:hover {
  background: #04122c;
  color: #fff;
}
.btn-about {
  border: 1px solid #6aad47;
  color: #6aad47;
  font-size: 16px;
  padding: 0.3rem 1.5rem !important;
  text-decoration: none;
}
.banner-txt .btnDefault {
  padding: 10px 15px;
}
/* carousel area */

.carousel-holder {
  padding: 5em 0 3em;
}
.carousel-holder h1 {
  font-size: 32px;
  line-height: 34px;
  font-family: "Poppins-SemiBold";
  margin-bottom: 20px;
}

.carousel-container {
  perspective: 1200px;
  width: 300px;
  height: 400px;
  position: relative;
  margin: 0 auto 100px;
}
#carousel {
  width: 100%;
  height: 400px;
  position: relative;
  perspective: 1000px;
  cursor: grab;
  overflow: visible;
  touch-action: pan-y;
}
.carouselItem {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  z-index: 0;
  pointer-events: none;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carouselItem img {
  display: none;
}
.carouselItem.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  pointer-events: auto;
}
/* Mirror reflection only on active */
.carouselItem.active::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  filter: blur(3px) opacity(0.2);
  -webkit-filter: blur(3px) opacity(0.2);
  border-radius: 8px;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  pointer-events: none;
}

.carouselItem.left,
.carouselItem.right {
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.carouselItem.left {
  transform: translateX(-20%) scale(0.8) rotateY(25deg);
}
.carouselItem.right {
  transform: translateX(20%) scale(0.8) rotateY(-25deg);
}
.carouselItem.active.dragging {
  cursor: grabbing;
}
.carousel-holder ul {
  margin: 30px 0;
  padding: 0;
}
.carousel-holder ul li {
  list-style: none;
  position: relative;
  padding-left: 40px;
  margin: 25px 0;
}
.carousel-holder ul li:before {
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: #6aad47;
  border-radius: 50px;
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  font-weight: 900;
  color: #fff;
  font-size: 12px;
  padding: 6px;
  text-align: center;
}
.space-b {
  padding-right: 8em;
}
/* carousel area */
/* main banner */
/* our services */
.advantages-holder {
  padding: 5em 0;
}
.advantages-holder h1 {
  font-weight: 600;
  font-size: 2rem;
  color: #000;
  line-height: 2.125rem;
  margin-bottom: 20px;
  font-family: "Poppins-SemiBold", sans-serif;
}
.advantages-holder p {
  font-size: 1.25rem;
  font-family: "Poppins-Light", sans-serif;
}
.advantages-holder ul {
  margin: 0;
  padding: 0;
}
.advantages-holder ul li {
  list-style: none;
  position: relative;
  padding-left: 50px;
  margin: 20px 0;
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-family: "Poppins-Light", sans-serif;
}
.advantages-holder ul li:before {
  left: 0;
  top: 3px;
  width: 30px;
  height: 30px;
  background: #6aad47;
  border-radius: 50px;
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  font-weight: 900;
  color: #fff;
  font-size: 12px;
  padding: 3px;
  text-align: center;
}
.adv-bg {
  background: url("../images/advantage.png") no-repeat center top;
  background-size: contain;
  min-height: 412px;
  padding: 10px;
}
.rs-bg {
  background: url("../images/right-silicon.png") no-repeat center top;
  background-size: contain;
  min-height: 412px;
  padding: 10px;
}
.ex-bg {
  background: url("../images/ex-bg.png") no-repeat center top;
  background-size: contain;
  min-height: 412px;
  padding: 10px;
}
.o-services-holder {
  background: #031c3a;
  text-align: left;
  padding: 5em 0;
}
.txt-home-services h1 {
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
  line-height: 2.125rem;
  margin-bottom: 1rem;
  text-transform: capitalize;
}
.txt-home-services p {
  color: #fff;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.625rem;
  margin-bottom: 2.5rem;
}
.card-holder {
  display: flex;
  justify-content: center;
}
.o-services-holder .card {
  width: 235px;
  box-sizing: border-box;
  margin: 0 0 20px 0;
  float: left;
  border: 1px solid #031c3a;
  border: 1px solid #6aad47;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.o-services-holder .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.o-services-holder .card-img {
  overflow: hidden;
  position: relative;
}

.o-services-holder .card-body {
  padding: 1.5rem 0.5rem !important;
  position: absolute;
  width: 100%;
  bottom: 0;
  color: #fff;
}
.o-services-holder .card-title {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.375rem;
  cursor: pointer;
}

.card-link {
  font-size: 1rem;
  line-height: 1.625rem;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins-Bold", sans-serif;
}
.txt-card {
  font-size: 1rem;
  line-height: 1.625rem;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins-Bold", sans-serif;
  vertical-align: middle;
}

.card-link:hover,
.card-link:active,
.card-link:focus {
  cursor: pointer;
  text-decoration: underline;
  outline: none;
}
/* our services */
/* partner home */
.partner-holder {
  width: 100%;
  padding: 5rem 0;
  text-align: center;
  color: #000;
  background: #fff url("../images/partner-bg.webp") no-repeat center top;
  background-size: cover;
}
.partner-holder h1 {
  color: #000;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.625rem;
  margin-bottom: 3rem;
}

.txt-home-partner .card {
  text-align: center;
  min-height: 240px;
  background: transparent;
  border: none;
}
.txt-home-partner .icon-box {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.txt-home-partner .icon-box img {
  width: 110px;
  height: 110px;
}
.txt-home-partner .card-title {
  font-weight: 700;
  color: #000;
  font-size: 1.5rem;
  line-height: 2rem;
  min-height: 80px;
  text-transform: capitalize;
}
.txt-home-partner .card p {
  font-weight: 400;
  color: #000;
  font-size: 1.25rem;
  line-height: 2rem;
}
.txt-home-partner .card-body {
  padding: 1rem 0.5rem;
}
/* partner home */
/* reach-holder-form-home */
.reach-holder {
  text-align: center;
  padding: 8rem 0;
  background: #000e2b url("../images/form-bg.webp") no-repeat center top;

  background-size: cover;
  color: #fff;
}
.txt-holder-reach {
  margin: 0 10rem;
}
.form-holder {
  margin-bottom: 20px;
}
.txt-holder-reach h5 {
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 2.625rem;
  margin-bottom: 0;
}
.txt-holder-reach h1 {
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 2.625rem;
  margin-bottom: 1.625rem;
}
.txt-holder-reach h2 {
  font-weight: 600;
  margin-bottom: 10px;
}
.txt-holder-reach input[type="text"],
.txt-holder-reach input[type="email"] {
  background: #e6e6e6 !important;
  color: #837f7f !important;
  border-radius: 6px;
  border: none;
  padding: 0.45rem 1rem;
}
.btn-submit {
  background: #04122c;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.625rem;
  font-family: "Poppins-Medium";
  font-weight: normal;
  border: 1px solid #6aad47;
}

/* reach-holder-form-home */

.footer-holder {
  background: #000e2b;
  color: #ffffff;
  padding: 3rem 0 1rem;
  /* min-height: 600px; */
}
.footer-logo-area {
  width: 300px;
}
.footer-logo {
  margin-bottom: 5px;
  margin-top: 50px;
}
.footer-logo a,
.footer-logo a:hover,
.footer-logo a:active,
.footer-logo a:focus {
  text-decoration: none;
  outline: none;
}
.footer-logo-area {
  text-align: right;
}
.emailus {
  font-size: 14px;
}
.emailus a {
  color: #fff;
}
.emailus a:hover {
  color: #fff;
  text-decoration: underline;
}
.social-links {
  float: right;
}
.social-links ul {
  margin: 0 10px 0 0;
  padding: 0;
  list-style: none;
}
.social-links ul li {
  display: inline-block;
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.social-links ul li:last-child {
  margin-right: 0;
}
.social-links ul li a {
  color: #ffffff;
  font-size: 24px;
}
.social-links ul li a:hover {
  color: #6aad47;
  font-size: 24px;
}
.footer-links {
  overflow: hidden;
  width: 427px;
  float: right;
}
.footer-links ul {
  margin: 0 50px 0 0;
  padding: 0;
  list-style: none;
  float: left;
}
.footer-links ul + ul {
  margin-right: 0px;
}
.footer-links ul li {
  margin: 0 0 0px 0;
}
.footer-links ul li.title-list {
  font-size: 20px;
  margin-bottom: 10px;
}
.footer-links ul li a {
  text-decoration: none;
  color: #d3d3d3;
  font-size: 16px;
}
.footer-links ul li a:active,
.footer-links ul li a:hover,
.footer-links ul li a:focus {
  text-decoration: underline;
}
.copy-right {
  border-top: 1px solid #ffffff;
  padding-top: 1rem;
  margin-top: 1rem;
}

.copy-right p {
  margin: 0;
  display: inline-block;
  font-size: 16px;
}
.copy-right p .copy {
  color: #fff;
  background: #000;
  border-radius: 50px;
  width: 25px;
  height: 25px;
  text-align: center;
  display: inline-block;
  line-height: 25px;
  font-size: 20px;
  font-weight: bold;
  margin: 0 5px;
}

/* About Us Page Styles */
.about-banner-holder {
  background: #000d28 url("../images/bg-aboutus.jpg") no-repeat center center;
  width: 100%;
  background-size: cover;
  min-height: 480px;
  display: flex;
  align-items: center;
  text-align: center;
}

.about-banner-txt {
  color: #fff;
  padding: 5em 3em;
}

.about-banner-txt h1 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 2.625rem;
  margin-bottom: 1.25rem;
}
.about-banner-txt p {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.625rem;
  margin-bottom: 1.25rem;
}

.about-content-holder {
  padding: 5rem 0;
  background: #fff;
}
.executive-team-holder {
  padding: 5rem 0;
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #000d28;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: #000d28;
  bottom: -10px;
  left: 25%;
}

.team-members {
  margin-top: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-content {
  padding: 2rem 2rem 0;
}
.team-content .team-img {
  margin-bottom: 20px;
}
.team-content .team-img img {
  border-radius: 6px;
}
.team-content h4 {
  font-weight: 600;
  font-size: 1.5rem;
  color: #000d28;
  margin-bottom: 0.5rem;
}

.team-content .position {
  font-weight: 500;
  color: #6aad47;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.team-content .bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* service micro */
.micor-bg {
  background: #000d28 url("../images/micro-bg.jpg") no-repeat center center;
  background-size: cover;
}
.roi-section {
  margin: 5rem 0;
  background: #6aad47;
}
.txt-services-roi {
  color: #fff;
  background: #6aad47;
  padding: 4rem;
}
.txt-services-roi h1 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.625rem;
}
.txt-services-roi p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  padding-right: 2rem;
}
.roi-img {
  background: #000417 url("../images/roi.jpg") no-repeat center top;
  background-size: cover;
  min-height: 392px;
}
.exp-roi-section {
  overflow: hidden;
  position: relative;
}
.bg-exp-services {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50vw;
  height: 100%;
}
.bg-exp-services img {
  display: inline-block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.exp-section {
  color: #fff;
  background: #fff;
  text-align: center;
  margin-bottom: 5rem;
}
.round-box {
  color: #fff;
  background: #031c3a;
  border-radius: 40px;
  padding: 2rem 5rem;
}
.exp-area h1 {
  margin-bottom: 25px;
  font-size: 32px;
  font-family: "Poppins-SemiBold", sans-serif;
}
.exp-area h2 {
  font-size: 2.5rem;
  line-height: 2.625rem;
  font-family: "Poppins-Bold", sans-serif;
}
.exp-area .card {
  border: none;
  min-height: auto;
}
.exp-area .icon-box img {
  width: 100%;
  height: 100px;
}
.exp-area .card p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.625rem;
  margin-bottom: 0;
}
/* service micro */
/* design verifications */
.dv-area {
  background: #000d28 url("../images/design-verification-bg.jpg") no-repeat
    center top;
  background-size: cover;
}
.dv-block-section {
  padding: 5rem 0;
  background: #010729 url("../images/accelrate-bg.jpg") no-repeat center top;
}
.dv-block-section h1 {
  color: #fff;
  font-size: 2rem;
  line-height: 2.625rem;
  margin-bottom: 50px;
  font-family: "Poppins-SemiBold", sans-serif;
}
.dv-block-section .txt-home-partner {
  text-align: left;
}
.dv-block-section .txt-home-partner .icon-box {
  width: 60px;
  height: 60px;
  float: left;
}
.dv-block-section .txt-home-partner .icon-box img {
  width: 60px;
  height: 60px;
}
.dv-block-section .txt-home-partner .card-title {
  color: #fff;
  display: inline-block;
  font-weight: 500;
  min-height: auto;
  margin: 13px 0 20px 20px;
  font-family: "Poppins-Medium", sans-serif;
}
.dv-block-section .txt-home-partner p {
  font-weight: 300;
  color: #fff;
  font-size: 20px;
  font-family: "Poppins-Light", sans-serif;
}
.o-xp {
  background: #fff;
}
.o-xp .txt-services-roi h1 {
  margin-bottom: 25px;
}
.o-xp .txt-services-roi {
  color: #000;
  background: #fff;
  padding: 0 2rem;
}
.o-xp .txt-services-roi p {
  line-height: 2.4rem;
}
.rs-list li {
  padding: 5px 0 5px 50px !important;
}
/* design verification */

/* physical design */
.phy-area {
  background: #000d28 url("../images/physical-design-bg.jpg") no-repeat center
    top;
  background-size: cover;
}
.experties-area {
  background: white;
}
.txt-address-area h2 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem;
}
.txt-address-area p {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
  padding-right: 5rem;
}
.txt-exp h2 {
  font-weight: 500;
  font-size: 2rem;
  line-height: 3rem;
}
.txt-exp p {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2.625rem;
  padding-right: 5rem;
}
.pd-synthesis-section {
  color: #000;
  background: #fff;
  padding: 5rem 0;
}
.pd-synthesis-section h1 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.625rem;
  margin-bottom: 30px;
}
.pd-synthesis-section .block-card {
  border: 1px solid #6aad47;
  margin-bottom: 30px;
  padding: 2rem 3rem;
  min-height: 240px;
}

.block-synthesis .card-title {
  min-height: auto;
  color: #000000;
  font-size: 1.2rem;
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 5px;
}
.block-synthesis .card-title:before {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #6aad47;
}
.block-synthesis p {
  font-family: "Poppins-Light", sans-serif;
}
.block-synthesis .card-body {
  padding: 0;
}
.address-holder {
  background: url("../images/address-bg.jpg") no-repeat center top;
  background-size: cover;
  padding: 5rem 0;
  color: #fff;
}
.address-holder h1 {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  font-family: "Poppins-SemiBold";
  font-size: 2rem;
  line-height: 2.625rem;
}
.address-holder h2 {
  font-family: "Poppins-Medium";
  font-size: 1.5rem;
  line-height: 1.625rem;
}
.address-holder ul {
  margin: 0;
  padding: 0 0 0 43px;
  list-style: none;
}
.address-holder ul li {
  margin: 10px 0;
  padding-left: 45px;
  position: relative;
}
.address-holder ul li:before {
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: #6aad47;
  border-radius: 50px;
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f00c";
  font-weight: 900;
  color: #fff;
  font-size: 12px;
  padding: 6px;
  text-align: center;
}

.add-img {
  background: url("../images/add-img.jpg") no-repeat center top;
  background-size: contain;
  min-height: 446px;
}
/* physical design */
/* fpga design and development */
.fpga-area {
  background: #000d28 url("../images/fpga-bg.jpg") no-repeat center top;
  background-size: cover;
}
.fpga-exp {
  background: url("../images/our-experties.png") no-repeat center top;
  background-size: contain;
  min-height: 412px;
  padding: 10px;
}
.o-exp p {
  font-size: 1rem;
}
.o-exp ul li {
  margin: 15px 0;
  font-size: 1rem;
}
.fpga-txt p {
  line-height: 2.2rem !important;
}
.fpga-box .block-card {
  color: #fff;
  border-radius: 20px;
}
.box-holder {
  position: relative;
  background-size: contain;
  min-height: 375px;
  padding: 10px;
  margin-bottom: 20px;
}
.bg-arch {
  background: url("../images/bg-arch.png") no-repeat center top;
}
.bg-imp {
  background: url("../images/design-imp.png") no-repeat center top;
}
.bg-synth {
  background: url("../images/synth-timing.png") no-repeat center top;
}
.bg-proto {
  background: url("../images/prototype-validation.png") no-repeat center top;
}
.anim .bg-anim-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6) !important;
  border-radius: 20px;
  padding: 150px 100px;
}
.anim:hover .bg-anim-overlay {
  cursor: pointer;
  padding: 100px 100px;
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.8) !important;
}

/* animation */
.anim:hover .card-body ul {
  display: block !important;
  animation: slideInFromBottom 0.5s ease-in-out forwards;
}

.anim .card-body ul {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out,
    visibility 0.5s;
}

.anim:hover .card-body ul {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@keyframes slideInFromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* animation */
.fpga-box ul {
  margin: 0;
  padding: 0;
}
.fpga-box ul {
  padding-left: 85px;
}
.fpga-box ul li {
  list-style: decimal;
}
.fpga-container {
  background: #fff;
  padding: 0 !important;
}
/* fpga design and development */

/* scroll bottom to top */
#scrollToTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #5ba633;
  color: #031634;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 18px;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #031634;
  color: #fff;
  border: 1px solid #ccc;
}

/* Arrow icon inside the button */
#scrollToTopBtn::after {
  content: "↑";
  display: block;
  line-height: 20px;
}
/* scroll bottom to top */

.news-careers {
  background: #fff;
}
.news-careers h1,
.news-careers p {
  color: #000;
}

.card-box .card {
  border: 1px solid #e0e0e0;
  transition: transform 0.2s;
}

.card-box .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
