:root {
  --primary-color: #ff3402;
  --secondary-color: black;
  --primary_bg-color: black;
  --text-color: #333;
  --light: white;
  --gray: #555;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
/* Navbar Logo Styling */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Navbar Link Styling */
.nav-link {
  margin: 5px 10px;
  font-weight: 500;
}

/* Get in Touch Button Styling */
.btn-touch {
  background-color: var(--primary-color);
  color: var(--light);
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-touch:hover {
  background-color: var(--secondary-color);
  color: var(--light);
}

/* Hero Section Styling */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 55vh;
    margin: 9rem 0 2rem 0;
    background-color: var(--light);
    padding: 50px 20px;
}
.hero-text h1 {
  font-weight: 800;
  font-size: 2rem;
}
.hero-text p {
  color: var(--gray);
  font-size: 1rem;
  margin: 20px 5px;
  position: relative;
}
.btn-outline-custom {
  border: 1px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 25px;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background-color: var(--primary-color);
  color: var(--light);
}
.hero-image img {
  max-width: 100%;
  height: auto;
  /* position: absolute; */
}

.partner-logo img {
  max-height: 150px;
  max-width: 100%;
  border: 1px solid #bababa;

  /* Black & white by default */
  /* filter: grayscale(100%);
  opacity: 0.7; */

  /* Smooth timer effect */
  /* transition: filter 0.6s ease, opacity 0.6s ease, transform 0.6s ease; */
}

/* On hover: full color */
.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.section-text-left {
  font-weight: bold;
  font-size: 1.5rem;
}
.description-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}
.partner-section {
  padding: 50px 20px;
}
.stats-section {
  padding: 20px 5px;
  text-align: center;
}
.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}
.stats-text {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 10px;
}
.solutions-section {
  padding: 0px 5px 30px 5px;
  text-align: center;
}
.solution-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 20px;
  background: var(--light);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.solution-icon {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: left;
}
.solution-icon img {
  height: 72px;
  width: 72px;
}
.solution-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: left;
}
.solution-text {
  font-size: 0.95rem;
  color: var(--gray);
  text-align: left;
}
.view-btn {
  background: var(--primary-color);
  color: var(--light);
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}
body {
  font-family: Arial, sans-serif;
}
.tech-section {
  padding: 0px 5px 30px;
  text-align: center;
}
.tech-title {
  font-weight: bold;
  margin-bottom: 20px;
}
.tech-tabs {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tech-tabs button {
  border: none;
  background: none;
  font-weight: 500;
  margin: 5px 10px;
  color: var(--gray);
  padding-bottom: 5px;
  position: relative;
  transition: all 0.3s ease;
}
.tech-tabs button.active {
  color: var(--secondary-color);
}
.tech-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-color);
}
.tech-card {
  text-align: center;
  padding: 15px;
}
.tech-card img {
  width: 50px;
  margin-bottom: 10px;
}
.tech-card p {
  font-weight: 500;
  margin: 0;
}
.view-btn:hover {
  background: var(--secondary-color);
  color: #fff;
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }
  /* .container-fluid{
         flex-direction: row;
        text-align: center;
         padding: 50px 20px;
       } */
  .hero-text {
    margin-bottom: 30px;
  }
  /* .get-started {
    justify-content: center;
  } */
  .cash-h5 {
    font-size: medium;
    font-weight: bold;
  }
  .cash {
    padding: 30px 20px !important;
  }
}
@media (max-width: 425px) {

  .cash {
    padding: 0px 20px !important;
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
  }
  .navbar-nav {
    text-align: center;
    padding: 10px 0;
  }

  .btn-touch {
    margin-top: 10px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
@media (min-width: 1023px) and (max-width: 1239px) {
  .hero-text h1 {
    font-weight: 800;
    font-size: 2rem;
  }
  .container-fluid {
    flex-direction: row;
    text-align: center;
    padding: 1px 40px;
  }
  .hero-image img {
    max-width: 47%;
    position: absolute;
    top: 24%;

    right: 4%;
  }
  .cash {
    padding: 60px 40px !important;
  }

  .cash-h5 {
    font-size: 1.8rem;
    font-weight: bold;
  }
  .cash-small {
    font-size: medium;
  }
  .section-text-left {
    font-weight: bold;
    font-size: 2rem;
  }
}
@media (min-width: 1239px) {
  .hero-text h1 {
    font-weight: 800;
    font-size: 3rem;
  }

  .container-fluid {
    flex-direction: row;
    text-align: center;
    padding: 1px 40px;
  }
  .hero-image img {
    max-width: 38%;
    position: absolute !important;
    top: 25%;

    right: 9%;
  }
  .cash {
    padding: 80px 60px !important;
  }

  .cash-h5 {
    font-size: xX-large;
    font-weight: bold;
  }
  .cash-small {
    font-size: larger;
  }
  .section-text-left {
    font-weight: bold;
    font-size: 2rem;
  }
}
h2.section-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.case-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  color: var(--light);
  min-height: 800px;
  min-width: 1722px;
  display: flex;
  align-items: flex-end;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.case-card-content {
  position: relative;
  padding: 20px;
  z-index: 2;
}

.case-card small {
  font-size: 0.9rem;
  opacity: 0.9;
}

.case-card h5 {
  font-weight: bold;
}

.highlight-border {
  border: 2px solid #2196f3;
}

.view-more-btn {
  margin-top: 25px;
  text-align: center;
}
.cash {
  padding: 10px;
  font-weight: bold;
  z-index: 1;
}

@media (max-width: 768px) {
  .case-card {
    min-height: 200px;
  }
  .case-card-content h5 {
    font-size: 3rem;
  }
}
.testimonial-section {
  padding: 25px 0;
  text-align: center;
}
.testimonial-section h2 {
  font-weight: bold;
  margin-bottom: 40px;
}
.testimonial-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.testimonial-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--gray);
}
.testimonial-name {
  font-weight: bold;
  margin-top: 15px;
}
.quote-icon {
  font-size: 70px;
  font-weight: bold;
  color: var(--gray);
  line-height: 1;
}
.carousel-indicators {
  position: static;
  /* margin-top: 1rem; */
}
.carousel-indicators [data-bs-target] {
  background-color: var(--secondary-color);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.location-card {
  text-align: center;
  padding: 10px 20px;
}
.location-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
}
.location-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.location-address {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.4;
}
.footer {
  background-color: #f9f9f9;
  padding: 40px 1px 20px 1px;
  font-size: 14px;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer .social-icons i {
  margin-right: 12px;
  font-size: 18px;
  color: var(--secondary-color);
}

.footer-bottom {
  background-color: var(--secondary-color);
  color: var(--light);
  padding: 15px 20px;
  font-size: 13px;
}

.footer-bottom a {
  color: #ccc;
  margin-left: 15px;
  text-decoration: none;
}

.subscribe-form input {
  border-radius: 4px 0 0 4px;
}

.subscribe-form button {
  border-radius: 0 4px 4px 0;
}

.orange-icon {
  background-color: #ff4d00;
  color: var(--light);
  border-radius: 8px;
  padding: 8px;
}

@media (max-width: 768px) {
  .footer h5 {
    margin-top: 20px;
  }
    .main-section {
    margin-bottom: 0rem;
    margin-top: 3.2rem !important;
  }
}
@media (max-width: 426px) {
  .footer h5 {
    margin-top: 20px;
  }
  .main-section {
    margin: 0rem 0;
    margin-top: 3rem;
  }
  .main-sections {
    margin: 8rem 0;
  }
  .main-sectiones {
    margin: 2.2rem 0 0 0;
  }
    .main-title {
    font-weight: 700;
    font-size: 1.5rem !important;
    text-align: left;
  }
  .hero-text h1 {
    font-weight: 800;
    font-size: 1.6rem;
}
.contact-options {
 justify-content: flex-start !important;
    gap: 20px !important;
   
}
.contact-option {
    text-align: left !important;
}
.card-custom img {
    height: auto !important;
    object-fit: cover;
}
.cash{
  top: 20px !important;
}
.feature-list ul li {
    text-align: left !important;
    justify-content: left !important;
}
.solution-text ul li {
    text-align: left !important;
    justify-content: left !important;
}
.solution-text ul{
    padding-left: 0;
}
.mb-rootLink{
  justify-content: left;
}
.contact-header {
    
    margin-bottom: 20px !important;
}
.contact-header h2 {
    
   text-align: left !important;
}
.main-section {

    padding: 12px !important;
}
.contact-options {
    
    margin-bottom: 15px !important;
}
.form-title {
    font-size: 1.5rem !important;
    font-weight: 700;
}

}
/* About page */
.main-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.main-sections {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.main-sectiones {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.main-title {
  font-weight: 700;
  font-size: 2.5rem;
}
.main-titles {
  font-weight: 700;
  font-size: 2.5rem;
}

.subtext {
  color: var(--gray);
  font-size: 1rem;
  margin-top: 15px;
}
@media (min-width: 768px) and (max-width: 975px) {
  .main-title {
    font-size: 2.2rem !important  ;
  }
  .main-titles {
    font-size: 3.8rem;
  }
}
@media (min-width: 768px) {
  .main-title {
    font-size: 3.8rem;
  }
  .main-titles {
    font-size: 3.8rem;
  }

  .subtext {
    font-size: 1.125rem;
  }
  .end-to-end {
    padding: 5px 3rem;
  }
  .main-section {
    margin-bottom: 0rem;
    margin-top: 5.5rem;
  }
  .main-sections {
    margin: 8rem 0;
    height: 45vh;
  }
  .main-sectiones {
    margin: 5.5rem 0 2rem 0;
    /* height: 49vh; */
  }
}
.section-padding {
  padding: 5px 20px !important;
}

.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.title {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.description {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 1.1rem;
  }
  .img-placeholder {
    max-width: 500px;

    height: 500px;
  }
  
}

.section-padding {
  padding: 60px 20px;
}

.process-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  text-align: center;
  position: relative;
}

.process-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.process-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.process-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.arrow {
  font-size: 24px;
  margin: 0 15px;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .arrow {
    display: none;
  }

  .process-card {
    margin-bottom: 30px;
  }
  .subtext {
    text-align: left;
  }
  .main-title {
    font-weight: 700;
    font-size: 2rem !important;
    text-align: left;
  }
  .main-titles {
    font-weight: 700;
    font-size: 2rem;
    text-align: left;
  }
}
/* what_we_do */
.heading {
  font-weight: 700;
  font-size: 2.2rem;
}

.subtexts {
  color: var(--gray);
  margin: 15px 0;
  font-size: 1rem;
}

.feature-list ul {
  list-style: none;
  padding: 0;
}

.feature-list ul li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.btn-custom {
  background-color: var(--primary-color);
  color: var(--light);
  border-radius: 25px;
  padding: 12px 16px;
  margin-top: 25px;
  font-weight: 500;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

@media (max-width: 767.98px) {
  .heading {
    font-size: 1.8rem;
    text-align: center;
  }

  .subtexts {
    text-align: center;
  }

  .btn-custom {
    width: 100%;
  }
  .btn-outline-custom{
    width: 100%;
  }
  .partner-section {
    padding: 20px 10px;
}
.stats-section {
    padding: 20px 5px;
    text-align: center;
}
.section-padding {
    padding: 60px 10px;
}
.solutions-section {
    padding: 10px 5px 30px 5px;
    text-align: center;
}
.tech-tabs {
   
    margin-left: 0px !important;
   
}

  .feature-list {
    text-align: center;
  }

  .img-placeholder {
    max-width: 100%;

    height: auto;
  }
  .bg-black .img-fluid {
    height: 240px;
  }
}

/* work */
.no-padding {
  padding: 0 !important;
  margin: 0 !important;
}

img.full-width {
  margin: 5px 0;
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  max-height: 650px;
}
.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.section-title h5 {
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 1px;
}

.section-title h2 {
  font-weight: 700;
}
.card-custom {
    border: none;
    /* border-radius: 10px; */
    box-shadow: 0 4px 12px rgb(0 0 0 / 35%);
    transition: 0.3s ease-in-out;
    height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
}

.card-custom img {
  /* border-top-left-radius: 10px;
      border-top-right-radius: 10px; */
  height: 400px;
  object-fit: cover;
}

.card-body h5 {
  font-weight: 600;
}

.card-body p {
  color: var(--gray);
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h6 {
  text-transform: uppercase;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.solution-icon {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-right: 10px;
  margin-top: 4px;
  user-select: none;
  font-weight: bold;
}

.solution-content h5 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.solution-content p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 575.98px) {
  body {
    padding: 20px 10px;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .solution-content h5 {
    font-size: 1rem;
  }
  .solution-content p {
    font-size: 0.9rem;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h5 {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h1 {
  font-weight: 800;
  font-size: 2rem;
  margin-top: 10px;
}

.focus-card {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--light);
  margin-bottom: 30px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-5px);
}

.focus-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #111;
}

.focus-card h2 {
  font-weight: 700;
  font-size: 1.25rem;
}

.focus-card p {
  font-size: 0.95rem;
  color: var(--gray);
}
.section-title {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;

}
.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 40px;
}
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}
.tech-tag {
  font-size: 0.75rem;
  padding: 5px 10px;
  background-color: #f1f1f1;

  margin-right: 5px;
  margin-top: 5px;
  display: inline-block;
}
.nav-tabs .nav-link {
  color: var(--gray);
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  color: var(--secondary-color);
  border-bottom: 2px solid #000;
  background-color: transparent;
}
.tech-tabs {
  display: flex;
  gap: 20px;

  margin-bottom: 30px;
  margin-left: 20px;
  justify-content: left;
}

.tech-tabs button {
  background: none;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  padding: 10px 0;
  cursor: pointer;
  position: relative;
}

.tech-tabs button.active {
  color: var(--secondary-color);
}

.tech-tabs button.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary_bg-color);
}

.tab-content-section {
  display: none;
}

.tab-content-section.active {
  display: block;
}

.category {
  font-size: 0.85rem;
  color: gray;
  margin-bottom: 4px;
}
/*  */
/* Styling */

.max-width {
  max-width: 900px;
}
.Wireframes .image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.Wireframes .image-card {
  flex: 0 0 calc(20% - 10px);   /* 5 per row */
  max-width: calc(20% - 10px);
  text-decoration: none;
  text-align: center;
  color: #333;
  transition: 0.3s;
}

.Wireframes .image-card img {
  width: 100%;
  border-radius: 8px;
  transition: 0.3s;
}

.Wireframes .image-card span {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
}

/* Hover Effect */
.Wireframes .image-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.Wireframes .image-card:hover span {
  color: #61184e; /* your theme color */
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .Wireframes .image-card {
    flex: 0 0 calc(33.33% - 10px);  /* 3 per row */
    max-width: calc(33.33% - 10px);
  }
}

@media (max-width: 576px) {
  .Wireframes .image-card {
    flex: 0 0 calc(50% - 10px);  /* 2 per row */
    max-width: calc(50% - 10px);
  }
}

.Features .feature-section {
  padding: 60px 0;
  text-align: center;
}
.Features .feature-images img {
  max-width: 350px;
}
.Features .feature-list {
  text-align: left;
}
.Features .feature-list ul li {
  line-height: 40px;
  color: #555555;
  font-size: 17px;
}
.Features .feature-list ul li::before {
  display: none;
}
.color-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.typography-section {
  padding: 60px 0;
  text-align: center;
}

.typography-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.font-sample {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.font-large {
  font-size: 100px;
  font-weight: 700;
  color: #2e2f3e;
  line-height: 1;
}

.font-details {
  text-align: left;
  color: #2e2f3e;
}

.font-details p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.font-details .uppercase,
.font-details .lowercase,
.font-details .numbers {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 3px;
  word-break: break-word;
}
.font-weight-sample span {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 3px;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

@media (max-width: 768px) {
  .color-circle {
    width: 70px;
    height: 70px;
  }
}
.problem-list li {
  line-height: 30px;
  color: #555555;
}

.job-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  position: relative;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-card h4 {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 5px;
}

.job-info {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 14px;
}

.job-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 20px;
  transform: translateY(-50%);
  font-weight: bold;
}

.btn-view-more {
  display: inline-block;
  background: black;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-view-more:hover {
  background: #333;
}
.faq-section {
  padding: 60px 0;
  font-family: "Open Sans", sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
  transform: rotate(270deg);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 10px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-button {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  background: #000;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.view-all-btn:hover {
  background: #333;
}
.job-details {
  padding: 50px 0;
  font-family: "Open Sans", sans-serif;
}

.job-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.job-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.job-location {
  color: #555;
  margin-bottom: 15px;
}

.job-summary {
  margin-bottom: 25px;
  line-height: 1.6;
}

.job-content h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.job-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.job-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.job-sidebar {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.apply-btn {
  display: block;
  width: 100%;
  background: black;
  color: white;
  padding: 12px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 20px;
}

.sidebar-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sidebar-box p {
  margin-bottom: 8px;
  font-size: 14px;
}
.requirements-card {
  border: none;
  display: block;
  padding: 20px;
  border-radius: 8px;
}
.apply-btn {
  background-color: #000;
  color: #fff !important;
  width: fit-content;
  border-radius: 30px;
  padding: 10px 0;
  font-weight: bold;
}
.apply-btn:hover {
  background-color: #333;
}
.requirements-card .fs-6 {
  font-size: 14px;
  color: #555555;
}
.details-text ul li,
.details-text p {
  color: #555555;
  line-height: 25px;
}
.details-text .section-title {
  font-weight: 600;
  margin-top: 50px !important;
}
.job-application-form input,
.job-application-form select {
  height: 50px;
  border-radius: 8px;
}
/* conteact us */
.contact-header {
  text-align: center;

  margin-bottom: 40px;
}

.contact-options {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-option {
  text-align: center;
}

.contact-option i {
  font-size: 24px;
}

.form-section {
  padding: 20px 20px;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
}

.form-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.paper-plane {
  width: 100%;
  margin-top: 20px;
  height: auto;
}

.submit-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
}

.submit-btn:hover {
  background-color: #333;
}

/* Video Carousel Section */
.video-carousel-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.video-carousel-section h2 {
  color: var(--secondary-color);
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.video-container video {
  height: 470px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.video-container video:hover {
  transform: scale(1.05);
}

.video-carousel .item {
  padding: 15px 0px;
  text-align: center;
}

.video-carousel .item h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 8px;
}

.video-carousel .item p {
  font-size: 0.9rem;
  color: #666;
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background-color: var(--primary-color) !important;
  color: white !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: var(--secondary-color) !important;
}

.owl-carousel .owl-nav button span {
  font-size: 24px;
}

.owl-carousel .owl-dots .owl-dot span {
  background-color: #ccc !important;
  transition: background-color 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-color) !important;
}

@media (max-width: 768px) {
  .video-carousel-section h2 {
    font-size: 1.8rem;
  }

  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }

  .owl-carousel .owl-nav button span {
    font-size: 18px;
  }
  .nav-mobile ul li .nav-item-link,
.nav-mobile ul li ul.sub-nav li a,
.nav-mobile ul li ul.sub-nav li ul.sub-sub-nav li a {
  font-size: 16px !important;


}
.mb-rootLink .btn-orange {
    padding: 8px 19px !important;
    /* background: var(--primary-color) !important; */
    border-radius: 50px;

    border: 2px solid !important;
}
  a {
    color:#000;
    text-decoration: none;
}

}


.nav-mobile ul li .nav-item-link,
.nav-mobile ul li ul.sub-nav li a,
.nav-mobile ul li ul.sub-nav li ul.sub-sub-nav li a {
  font-size: 32px;
  color: #252b33;
  font-weight: 600;
  padding: 10px 15px;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  line-height: normal;
  transition: color 0.1s ease-in-out;
  background-color: transparent;
  text-decoration: none;
  border: 0;
}
.tech-tabs .nav-link {

      padding: 10px 22px;
      color: #555;
      font-weight: 500;

      margin: 5px;
      transition: 0.3s;
      background: white;
    }

    .tech-tabs .nav-link.active {
      background:#fff;
      color: var(--primary-color);
      /* border-bottom: 2px solid !important; */
    }

    /* Cards */
    .tech-card {
      text-align: center;
      padding: 15px;
      border-radius: 12px;
      background: #fff;
      transition: 0.3s;
      cursor: pointer;
    }

    .tech-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.tech-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Security Section Styles */
.security-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.security-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.security-header i {
  font-size: 2.5rem;
  color: #ff3402;
}

.security-header h2 {
  font-weight: 800;
  font-size: 2.5rem;
  margin: 0;
  color: #252b33;
}

.security-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.security-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #ff3402;
}

.security-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3402 0%, #ff6b35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.security-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.security-content h5 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #252b33;
}

.security-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .security-header {
    flex-direction: column;
    gap: 10px;
  }
  
  .security-header h2 {
    font-size: 2rem;
  }
  
  .security-header i {
    font-size: 2rem;
  }
  
  .security-card {
    padding: 20px;
  }
}

/* Results Section Styles */
.results-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #fff5f2 0%, #fff 100%);
}

.results-header,
.benefits-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.results-header i,
.benefits-header i {
  font-size: 2.5rem;
  color: #ff3402;
}

.results-header h2,
.benefits-header h2 {
  font-weight: 800;
  font-size: 2.5rem;
  margin: 0;
  color: #252b33;
}

.result-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #ff3402 0%, #ff6b35 100%);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.result-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ff3402;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  right: 15px;
}

.result-content h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #252b33;
  padding-right: 40px;
}

.result-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Benefits Section Styles */
.benefits-section {
  padding: 30px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
align-items: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #ff3402;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff3402 0%, #ff6b35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.benefit-content h5 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #252b33;
}

.benefit-content p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}
.cash{
  top: 5%;
}
.position-relative {
  overflow: hidden;
}

.zoom-img {
  transition: transform 0.7s ease;
  transform: scale(1);
  
}
.position-relative::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Adjust how much top area you want blurred */
  backdrop-filter: blur(0px);
  background: rgba(0, 0, 0, 60%); /* optional dark overlay */
  z-index: 1;
}

.position-relative:hover .zoom-img {
  transform: scale(1.08);
}
/* .tm-wrapper{
  max-width:1100px;
  margin:auto;
} */

/* Card */
.tm-card{
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  position:relative;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Content */
.tm-content{
  padding:25px;
}

.tm-quote{
  font-size:40px;
  color:#ff2e2e;
  text-align: left;
}

.tm-text{
  font-size:1.4rem !important;
  font-weight: 600;
  margin:15px 0;
  line-height:2rem;
  text-align: left;
}

/* Image */
.tm-image{
  width:100%;
  height:260px;
}

/* .tm-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%);
  object-position: 50px -35px;
} */
 .tm-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    filter: grayscale(100%);
    object-position: 40px -10px;
}

/* Bottom Info */
.video-modal-image{
  position:absolute;
  bottom:20px;
  left:20px;
  right:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.tm-author{
  font-weight:600;
  font-size:1.3rem;
}

.tm-role{
  font-size:1.2rem;
  color:#666;
}

/* Play Button */
.tm-play{
  background:#fff;
  padding:6px 14px;
  border-radius:40px;
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  font-size:14px;
  box-shadow:0 6px 15px rgba(0,0,0,0.15);
  z-index: 999;
}

.tm-play-circle{
  width:24px;
  height:24px;
  background:#ff2e2e;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* Tablet */
@media(min-width:768px){
  .tm-text{font-size:1.2rem;}
  .tm-image{height:320px;}
}
@media(max-width:768px){
  .tm-text{font-size:1.2rem!important;
  line-height: 1.5rem;}
  .partner-section {
    padding: 15px 20px;
}
.solutions-section {
    padding: 0px 5px 15px 5px;
    text-align: center;
}
h2.section-title {
    
    margin-bottom: 15px;
}
.tech-section {
    padding: 0px 5px 15px;
    text-align: center;
}
.testimonial-section {
    padding: 14px 0;
    text-align: center;
}
.p-0 {
    padding: 0px 10px!important;
}
.img-fluid {
   
    max-height: 350px !important;
}
.mainimage {
    flex-direction: column-reverse !important;
}
.hero-section {
 
    min-height: 55vh;
    margin: 4rem 0 0 0;
  
}
.card-custom img {
    height: 250px;
    object-fit: cover;
}
  .main-sectiones {
    margin: 4rem 0 1rem 0 !important;
    /* height: 49vh; */
  }
}
@media(max-width:425px){
  .tm-content{
    height: 100%;
    min-height: 260px;
  }
  .tm-card{
    flex-direction: column-reverse;
  }
  .tm-text{
  font-size:0.9rem !important;
  font-weight: 600;
  margin:10px 0;
  line-height:1.3rem;
  text-align: left;
}
.video-modal-image {

    left: 9px;
    right: 20px;
 
}
.tm-content {
    padding: 10px;
}
.tm-quote{
  font-size:20px;
  color:#ff2e2e;
  text-align: left;
}
.views-btn {
   
    padding: 5px 10px !important;
   
}
.vads-terms-wrapper {
 
    margin: 20px auto !important; 

}
.vads-privacy-wrapper {

    margin: 20px auto !important;
   
}
.btn-custom {
    
    margin-top: 10px !important;
   
}
.partner-section {
    padding: 10px 10px !important;
}
.section-title h1 {
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: 10px;
}
.results-header h2, .benefits-header h2 {
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0;
    color: #252b33;
}
h2.section-title {
    font-weight: bold;
  
    font-size: 1.5rem !important;
    margin-bottom: 10px;
}
.stats-section {
    padding: 5px 5px !important;
    text-align: center;
}
.tm-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:grayscale(100%);
  object-position: 0px -35px !important;
}
.video-box video {
    width: 100%;
    height: 55vh !important;
    border-radius: 12px;
}
.process-card {
    margin-bottom: 9px;
}
.tm-author{
  font-weight:600;
  font-size:0.9rem;
}
.tech-tabs {
    display: flex;
    gap: 0px;
    margin-bottom: 30px;
    margin-left: 20px;
    justify-content: center;
    flex-direction: column;
    align-content: center;
}
.tech-tabs .nav-link {
    padding: 1px 22px;
 
}
ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}
.tm-role{
  font-size:0.9rem;
  color:#666;
}
.main-title {
    
    font-size: 1.5rem !important;
    text-align: left;
}.section-text-left {
    font-weight: bold;
    font-size: 1.2rem;
}
.section-padding {
    padding: 5px 2px !important;
}
img.full-width {
    width: 100%;
    height: auto !important;
    display: block;
    overflow: hidden;
  }
  .paper-plane {
    width: 331px !important;
    margin-top: 40px !important;
    height: 174px !important;
}
.section-title {
    text-align: center;
    margin-bottom: 16px;
}
.hero-section {

    margin: 0rem ;

}
.form-section {
  padding: 5px;
}
.mainimage{
  flex-direction: column-reverse !important;
}
}
@media(max-width:320px){
  .tm-content {
    height: 100%;
    min-height: 300px;
}

}

/* Desktop */
@media(min-width:768px){
  .tm-card{
    flex-direction:row;
    height:420px;
    
  }

  .tm-content,
  .tm-image{
    width:50%;
    position: relative;
  }
  
  
/* .tm-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to left,
      rgba(247,247,247,0) 0%,
      rgba(247,247,247,0.3) 30%,
      rgb(255 255 255 / 31%) 55%,
      rgb(247 247 247 / 97%) 75%,
      rgb(247 247 247) 100%
    )
} */
 .tm-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to left,
      rgba(247,247,247,0) 0%,
      rgb(255 255 255 / 30%) 30%,
      rgb(255 255 255 / 31%) 55%,
      rgb(247 247 247 / 97%) 75%,
      rgb(255 255 255) 100%
    );
}

  .tm-content{
    padding:30px 0px 30px 30px;
    display:flex;
    flex-direction:column;
    align-items: baseline;

  }

  .tm-image{
    height:100%;
  }

  .video-modal-image{
    left:30px;
    right:30px;
  }
  .modal-dialog {
    max-width: 750px;
    margin-right: auto;
    margin-left: auto;
}
.vads-terms-wrapper {
 
    margin: 40px auto !important; 

}
.vads-privacy-wrapper {

    margin: 40px auto !important;
   
}


}

/* Owl Dots */
.owl-theme .owl-dots{
  margin-top:25px;
  text-align:center;
}

.owl-theme .owl-dots .owl-dot span{
  width:10px;
  height:10px;
  background:#ccc;
}

.owl-theme .owl-dots .owl-dot.active span{
  background:#ff2e2e;
}

/* ===== VIDEO MODAL ===== */
.video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:0.3s ease;
  z-index:9999;
}

.video-modal.active{
  opacity:1;
  visibility:visible;
}

.video-box{
  width:100%;
  max-width:800px;
  position:relative;
  background-color: #000000bd;
}

.video-box video{
  width:100%;
  height: 80vh;
  border-radius:12px;
}

.close-btn{
  position:absolute;
  top:0;
  right:0;
  font-size:30px;
  font-weight: 600;
  color:#fff !important;
  cursor:pointer;
}
.btn-close{
  color: #fff !important;
  --bs-btn-close-color:#fff !important;
  --bs-btn-close-bg: unset:
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color:unset;
    background-clip: padding-box;
    border: unset;

    outline: 0;
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: var(--bs-modal-header-padding);
    border-bottom: unset;
    /* border-top-left-radius: var(--bs-modal-inner-border-radius); */
    /* border-top-right-radius: var(--bs-modal-inner-border-radius); */
}
.form-check-label a{
  color: #000 ;
}
.vads-terms-wrapper {
    max-width: 1000px;
    margin: 75px auto !important;
    padding: 40px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #222;
}

.vads-terms-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.vads-terms-section {
    margin-bottom: 35px;
}

.vads-terms-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vads-terms-text {
    margin-bottom: 10px;
}

.vads-terms-list {
    margin-left: 20px;
    padding-left: 10px;
}

.vads-terms-list li {
    margin-bottom: 6px;
}

.vads-terms-highlight {
    font-weight: bold;
}

.vads-terms-warning {
    color: #c0392b;
    font-weight: bold;
}

.vads-privacy-wrapper {
    max-width: 1000px;
    margin: 75px auto;
    padding: 40px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #222;
}

.vads-privacy-header {
    margin-bottom: 40px;
}

.vads-privacy-title {
    font-size: 32px;
    font-weight: 700;
}

.vads-privacy-section {
    margin-bottom: 35px;
}

.vads-privacy-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vads-privacy-subheading {
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

.vads-privacy-list {
    margin-left: 20px;
}

.vads-privacy-list li {
    margin-bottom: 6px;
}

.vads-privacy-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #555;
}
.views-btn {
    background: var(--primary-color);
    color: var(--light);
    border-radius: 50px;
    padding: 7px 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
    margin-top: 10px;
}
.solution-card:hover {
  /* background: linear-gradient(135deg, #87CEFA, #B0E0E6, #E0F7FF); */
  background-color: #fff2e0 ;
  transform: translateY(-8px);
border: 2px solid #fabb87;
}
.solution-card1:hover {
  /* background: linear-gradient(135deg, #87CEFA, #B0E0E6, #E0F7FF); */
  background-color: #E0F7FF ;
  transform: translateY(-8px);
border: 2px solid #87CEFA;
}
.solution-card2:hover {
  /* background: linear-gradient(135deg, #87CEFA, #B0E0E6, #E0F7FF); */
  background-color: #e0ffe5 ;
  transform: translateY(-8px);
border: 2px solid #87faad;
}.solution-card3:hover {
  /* background: linear-gradient(135deg, #87CEFA, #B0E0E6, #E0F7FF); */
  background-color: #fbffc0 ;
  transform: translateY(-8px);
border: 2px solid #eefa87;
}.solution-card4:hover {
  /* background: linear-gradient(135deg, #87CEFA, #B0E0E6, #E0F7FF); */
  background-color: #ffe0f8 ;
  transform: translateY(-8px);
border: 2px solid #fa87fa;
}
.solution-card5:hover {
  /* background: linear-gradient(135deg, #87CEFA, #B0E0E6, #E0F7FF); */
  background-color: #ffe0e0 ;
  transform: translateY(-8px);
border: 2px solid #fa878d;
}
.btn-dark{
  background-color: var(--primary-color);
  border: unset;
  border-radius: 25px;
}
.letscontent a {
  text-decoration: none !important;
}