@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500&display=swap");

/* ----- custom variables & reset (bootstrap override) ----- */
:root {
  --ink: #0a0a0f;
  --ink2: #14141c;
  --ink3: #1e1e2a;
  --teal: #00c9a7;
  --teal-dim: rgba(0, 201, 167, 0.1);
  --teal-line: rgba(0, 201, 167, 0.25);
  --muted: #6b6b80;
  --text: #e8e8f0;
  --text2: #a0a0b8;
  --border: rgba(255, 255, 255, 0.07);
  --card: rgba(255, 255, 255, 0.03);
  --syne-font: "Syne", sans-serif;
  --dm-sans-font: "DM Sans", sans-serif;
  --light-green: #25d366;
    --ink-gig:#FC1414;
    --ink-dark-gray:#CCCCCC;
}

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--dm-sans-font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* custom typography */
h1,
h2,
h3,
.display-font {
  font-family: var(--syne-font);
}

h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-teal {
  color: var(--teal);
}
.bg-teal-dim {
  background-color: var(--teal-dim);
}
.border-teal-light {
  border-color: var(--teal-line);
}
.text-muted-custom {
  color: var(--text2);
}
.text-muted-darker {
  color: var(--muted);
}

/* override bootstrap nav / cards with transparent style */
.navbar {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 2rem;
}

.logo {
  max-width: 150px;
  width: 100%;
}

.navbar .nav-link {
  color: var(--text2);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.navbar .nav-link:hover {
  color: var(--teal);
}

.navbar-toggler {
  filter: brightness(0) invert(1);
  box-shadow: none !important;
}

.navbar-brand {
  font-family: var(--syne-font);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--text) !important;
}

.navbar-brand span {
  color: var(--teal);
}

.btn-outline-teal {
  border: 1px solid var(--teal-line);
  color: var(--teal);
  background: var(--teal-dim);
  border-radius: 6px;
  padding: 0.4rem 1.2rem;
  font-size: 0.875rem;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-teal:hover {
  background: rgba(0, 201, 167, 0.18);
  color: var(--teal);
  border-color: var(--teal);
}

/*.btn-teal-primary {
  background: var(--teal) !important;
  color: #0a0a0f !important;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.7rem 1.8rem;
  transition:
    opacity 0.2s,
    transform 0.15s;
  border: none;
} */


/*.btn-teal-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  background: var(--teal);
  color: #0a0a0f;
} */

/* ==========================================
   Teal Primary Button
========================================== */

.btn.btn-teal-primary {
    --btn-bg: var(--teal);
    --btn-hover-bg: #00a78d;

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;

    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 8px;

    background: var(--btn-bg) !important;
    color: #0a0a0f !important;
    text-decoration: none;

    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;

    transition: color .35s ease,
                transform .25s ease,
                box-shadow .35s ease;
}

/* Base Background */
.btn.btn-teal-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--btn-bg);
    z-index: -2;
}

/* Hover Fill */
.btn.btn-teal-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--btn-hover-bg);
    transition: width .35s ease;
    z-index: -1;
}

/* Hover */
.btn.btn-teal-primary:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 150, 150, 0.20);
}

.btn.btn-teal-primary:hover::before {
    width: 100%;
}

/* Active */
.btn.btn-teal-primary:active {
    transform: translateY(0);
}

/* Focus */
.btn.btn-teal-primary:focus,
.btn.btn-teal-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(0, 201, 170, 0.35);
}

/* Ensure Bootstrap doesn't interfere */
.btn.btn-teal-primary,
.btn.btn-teal-primary::before,
.btn.btn-teal-primary::after {
    box-sizing: border-box;
}

.btn-outline-light-custom {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.7rem 1.8rem;
}

.btn-outline-light-custom:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: white;
}

.btn-white-outlined {
    color: #fff;
    border: 1px solid #fff;
    padding: 0.7rem 1.8rem;
    transition: all 0.3s ease;
}

.btn-white-outlined:hover {
    background: var(--teal);
    color: #000;
    border: 1px solid var(--teal);
}

/* hero grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    black 40%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    black 40%,
    transparent 100%
  );
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 450px;
  background: radial-gradient(
    ellipse,
    rgba(0, 201, 167, 0.07) 0%,
    transparent 70%
  );
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}

.badge-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-line);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-teal::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}
.badge-teal .bi-check2-circle {
  font-size: 15px;
}
.non_dot::before {
  content: unset;
  width: unset;
  height: unset;
}

.industry-item {
  background: transparent;
  perspective: 1500px;
}

.flip-card {
  background-color: var(--ink2);
  width: 100%;
  height: 100%;
  min-height: 250px;
  perspective: 1500px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.industry-item:hover .flip-card-inner {
  transform: rotateY(180deg);
  background-color: var(--ink3);
}
.paragragh_cta_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
/*
.cta_wrapper {
  background: url("/image/ai_cta_bg.webp") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  height: 200px;
}
*/

.cta_sec {
  background: url("/image/ai_cta_bg.webp") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.industries_cta_sec {
  background: url("/image/industries_cta_bg.webp") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}


/*
.industries_cta_wrapper {
  background: url("/image/industries_cta_bg.webp") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  height: 200px;
}
*/

/* Front & Back Panels */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 250px;
  backface-visibility: hidden;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--teal-line);
  border-radius: 10px;
}

/* Front Panel */
.flip-card-front {
  transform: rotateY(0deg);
  justify-content: center;
  text-align: center;
  background: #14141c;
  gap: 10px;
}

.flip-card-front h3 {
  font-size: 18px;
  line-height: 28px;
}

/* Back Panel - The content that shows on flip */
.flip-card-back {
  transform: rotateY(180deg);
  overflow-y: auto;
  scrollbar-width: thin;
  text-align: left;
  justify-content: flex-start;
  padding: 25px;
}

.flip-card-back p {
  font-size: 14px;
  line-height: 22px;
  color: var(--text2);
  margin: 0;
}

/* service cards */
.service-card {
  background: var(--ink2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  height: 100%;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: var(--teal-line);
}

.service-num {
  font-family: var(--syne-font);
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.service-card .icon-square {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #00c9a71a;
  border: 1px solid #00c9a740;
  border-radius: 10px;
}

.service-card .icon-square i {
  font-size: 1.3rem;
  color: var(--teal);
}

.service-card .icon-square img {
  width: 100%;
  max-width: 30px;
}
/* Tech Slider */

.slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.Technologies_we_work_with {
  display: flex;
  width: max-content;
  animation: slide 40s linear infinite;
}

.Technologies_we_work_with_reverse {
  animation: slideReverse 40s linear infinite !important;
}

.Technologies_we_work_with_reverse .Technologies_we_work_with_images img {
  width: unset;
  height: 100px;
}
.tech_stack_images .Technologies_we_work_with_images img {
  width: unset;
  height: 100px;
}

.Technologies_we_work_with:hover {
  animation-play-state: paused !important;
}

.Technologies_we_work_with_images {
  display: flex;
}

.Technologies_we_work_with_images img {
  width: 200px;
  height: 120px;
  object-fit: cover;
}

.Technologies_we_work_with_images.we_trusted img {
  width: unset;
  height: 80px;
  margin: 0px 30px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slideReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* enterprise pillars */
.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  min-height: 170px;
  height: 100%;
}

.stat-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    min-height: 120px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height:100%;
}
.stat-box h3{
  font-weight:500;
  font-size:18px;
}

.stat-box-full {
  background: var(--teal-dim);
  border: 1px solid var(--teal-line);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}

.big-number {
  font-family: var(--syne-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  line-height: 1.2;
}
.counter_number {
  font-size: 3rem;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 1rem;
  display: inline-block;
}

/* background alternations */
.bg-ink2 {
  background: var(--ink2);
}
.border-bottom-light {
  border-bottom: 1px solid var(--border);
}
.border-top-light {
  border-top: 1px solid var(--border);
}

/* animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.7s ease both;
}

/* form input styling */
.form-control,
.form-select,
textarea {
  min-width: 200px;
  padding: 0.7rem 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--teal-line) !important;
  box-shadow: none;
  outline: none;
}

.form-control::placeholder {
  color: var(--muted) !important;
}

.form-select {
  color: var(--muted) !important;
}

.form-select:valid {
  color: #fff !important;
}

/* footer logo */
.footer-logo {
  font-family: var(--syne-font);
  font-weight: 700;
  font-size: 1rem;
}
.company_footer h3 {
  font-size: 18px;
}
.company_footer a {
  text-decoration: none;
}

.social_links {
  display: flex;
  gap: 15px;
}

.social_links .bi {
  font-size: 25px;
  color: white;
}
.copyright {
  border-top: 1px solid var(--text2);
}

/* utility classes */
.z-1 {
  z-index: 1;
}
.position-relative {
  position: relative;
}

.lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--text2);
}

.lead span {
  color: var(--teal);
}

.cta-form .card {
  background: var(--ink2);
}

section {
  scroll-margin-top: 70px;
}
.circuit_bg {
  background: url("/image/bg_pattern.webp") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.talK_cta_bg {
  background: url("/image/industries_cta_bg.webp") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.text-white {
  opacity: 0.95 !important;
}
/* Whatsapp Logo */

.float-whatsapp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.social-icons-wrapper {
  position: relative;
}

.social-icons-wrapper:before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  z-index: 99;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(-50%, -50%);
  background-color: #7fba0000;
  border: 1px solid var(--teal);
  border-radius: 100% !important;
  opacity: 0.5;
  animation: 2s ease-in-out infinite animation1;
}

.social-icons-wrapper a {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.social-icons-wrapper a i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  position: relative;
  z-index: 100;
}

.social-icons-wrapper:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  z-index: 98;
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(-50%, -50%);
  background-color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 100% !important;
  opacity: 1;
  animation: 1.7s ease-in-out infinite animation2;
}

@keyframes animation1 {
  0% {
    opacity: 0.1;
    transform: scale(1);
  }
  70% {
    opacity: 0.6;
    transform: scale(0.5);
  }
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

@keyframes animation2 {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  70% {
    opacity: 0.8;
    transform: scale(0.6);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}

.social_links a {
  color: #fff;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  border-radius: 50%;
}

.social_links a:hover {
  background: var(--teal);
  color: #000;
  transition: all 0.3s ease;
}

footer a.nav-link:hover {
  color: var(--teal);
  transition: all 0.3s ease;
}

/* Case Study Gig Page */
.gray_dark{
color:var(--ink-dark-gray);
}

.main_sec{
padding-top:100px;
background:white;
}



.banner_grid{
    display:grid;
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
    align-items:end;
    gap:18px;
}
.info h1{
  color:var(--ink);
  font-weight:700;
  line-height:1.1;
}
.info h1 span{
  font-weight:600;
  font-size: 30px;
  line-height: 1.1;
}
.black_color{
  color: var(--ink);
}
.gig_color{
  color:var(--ink-gig);
}

.grid_item{
    overflow:hidden;
    border-radius:24px;
}

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


.item1{
    height:370px;
}

.item2{
    height:265px;
}

.item3{
    height:185px;
}

.item4{
    height:265px;
}

.item5{
    height:370px;
}

.about_gig{
    background: #FAFAFA;
}
.spotlight_btn {
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--ink-gig);
    color: white;
    text-decoration: none;
    font-size: 15px;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_box{
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    padding:16px;
    border-radius:30px;
}
.about_box.second{
  background:var(--ink-gig);
}
.about_box h3{
  font-size:24px;
}

/* Accordian  */
.accordion-item {
  border-radius: 16px !important;
}
.problem-section{
    position: relative;
    overflow: hidden;
    background: #050505;
    z-index: 1;
}

/* Top Left Pattern */
.problem-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 450px;
    background: url(/image/before_line_trans.webp)  no-repeat!important;
    background-size: contain !important;
    pointer-events: none;
    z-index: 0;
}

/* Bottom Right Pattern */
.problem-section::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 370px;
    height: 400px;
    background: url(/image/after_line_trans.webp)  no-repeat!important;
    background-size: contain !important;
    pointer-events: none;
    z-index: 0;
}

/* Keep content above patterns */
.problem-section > *{
    position: relative;
    z-index: 2;
}

.problem-section {
  background: #000;
}

.custom-accordion .accordion-item {
  border: none;
  background: #181821;
  overflow: hidden;
  margin-bottom: 20px;
}

.custom-accordion .accordion-button {
  background: #181821;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 25px;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--ink-gig);
  color: #fff;
}

.custom-accordion .accordion-body {
  background: var(--ink-gig);
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  padding: 0 16px 16px;
}

.custom-accordion .accordion-button::after {
   filter: brightness(0) invert(1);
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.object-fit-cover {
  object-fit: cover;
}

.custom-accordion .accordion-item {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-color: transparent;
}


/* Gig Services */
.gig_services_wrapper{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gig_services_img{
width:800px;
}
.gig_services_card {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 15px;
    position: absolute;
    left: 90px;
    top: 70px;
}
.secure_paybill {
    left: 250px;
    top: 430px;
}
.multi_booking_support {
    top: 0px;
    left: 500px;
}
.real_time_tracking{
    top: 530px;
    left: 670px;
}

.bulk_shippment {
    top: 110px;
    left: 950px;
}
.instant_quotation {
    top: 330px;
    left: 1050px;
}

.gig_services_card img{
  width:40px;
}
.gig_services_card p{
font-weight:600;

}

/* Parther With Us */

.partner_with_zyntech{
    position: relative;
    overflow: hidden;
    background: #050505;
    z-index: 1;
}

/* Top Left Pattern */
.partner_with_zyntech::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 450px;
    background: url(/image/parther_zyntech_before.webp)  no-repeat!important;
    background-size: contain !important;
    pointer-events: none;
    z-index: 0;
}

/* Bottom Right Pattern */
.partner_with_zyntech::after{
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 200px;
    background: url(/image/parther_zyntech_after.webp)  no-repeat!important;
    background-size: contain !important;
    pointer-events: none;
    z-index: 0;
}

/* Keep content above patterns */
.partner_with_zyntech > *{
    position: relative;
    z-index: 2;
}

/* Solution We did */
 .feature-card {
  background: #fff;
  padding: 20px;
  height: 100%;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #dcdcdc;
}

.feature-icon {
  background: #ff1b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.feature-card:hover {
  border-bottom: 4px solid #ff1b1b;
  transition: 0.6s;
}

.feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  max-width:100%;
}

.feature-card h3 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}

/* Technology Stack  */
.technology_stack
{
  background: #FAFAFA;
}
.technology_stack_card_wrapper{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.technology_stack_card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height:100%;
}
.technology_stack_card img{
    width: 120px;
    height:120px;
    border: 1px solid #FC1414;
    border-radius: 22px;
    padding: 18px;
}
.technology_stack_card p{
  font-size:18px;
  font-weight:700;
}

/* Result And Business */
.result_business_card {
    padding: 20px;
    background: #FAFAFA;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 150px;
}
.result_business_card h3{
font-size:24px;
line-height:1.2;
font-weight:600;
}

.result_business_card p{
margin-bottom:0px;
text-transform: uppercase;
}
.result_business_card.red{
    background: var(--ink-gig);
}

.result_business_card.black{
background:black;
}



