.elementor-17942 .elementor-element.elementor-element-6b3b8de{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-f7f8269 *//* =========================
   GLOBAL CSS
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#0d1624;
  overflow-x:hidden;
}

/* =========================
   STICKY HEADER
========================= */

.eicon-caret-down:before {
    content: "\e92a";
    display: none;
}



/* LOGO SIZE FIX - DESKTOP + MOBILE */

img{
    max-width:100%;
    height:auto;
}

/* LOGO */
img[src*="vsr-logo.png"]{
    width:100px;
    height:auto;
    object-fit:contain;
}

/* MOBILE VIEW */
@media (max-width:767px){
    
    img[src*="vsr-logo.png"]{
        width:90px;
        height:auto;
    }

}

.navbar{
  width:100%;
  background:#fff;
  padding:12px 5%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  position:sticky;
  top:0;
  z-index:9999;

  box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-box{
  width:40px;
  height:40px;

  background:#ff5b1f;
  color:#fff;

  border-radius:8px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:700;
}

.logo h2{
  font-size:20px;
  color:#111;
}

.logo span{
  color:#ff5b1f;
}

.top-btn{
  background:#ff5b1f;
  color:#fff;

  padding:12px 22px;

  border-radius:8px;

  text-decoration:none;
  font-size:14px;
  font-weight:600;

  transition:0.3s;
}

.top-btn:hover{
  background:#ff7843;
}

/* =========================
   HERO SECTION
========================= */

.hero{
  width:100%;
  min-height:90vh;

  padding:50px 5%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:20px;

  background:
  linear-gradient(rgba(7,17,30,0.88), rgba(7,17,30,0.88)),
  url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=2070&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-left{
  width:58%;
}

.tag{
  display:inline-block;

  background:#132235;
  border:1px solid #ff5b1f;

  color:#ffb18e;

  padding:10px 18px;

  border-radius:50px;

  font-size:13px;
  font-weight:600;

  margin-bottom:25px;
}

.hero-left h1{
  font-size:68px;
  line-height:1.1;

  color:#fff;

  font-family:'Inter',sans-serif;

  margin-bottom:25px;
}

.hero-left h1 span{
  color:#ff5b1f;
}

.hero-left p{
  color:#cbd4df;

  max-width:650px;

  line-height:1.8;
  font-size:17px;

  margin-bottom:35px;
}

/* =========================
   CONTACT BOX
========================= */

.contact-box{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.phone-card{
  padding:14px 22px;

  border:1px solid rgba(255,255,255,0.15);

  background:rgba(255,255,255,0.06);

  color:#fff;

  border-radius:12px;

  backdrop-filter:blur(10px);

  font-weight:600;

  transition:0.3s;
}

.phone-card:hover{
  transform:translateY(-4px);
  border-color:#ff5b1f;
}

/* =========================
   FORM
========================= */

.hero-form{
  width:550px;

  background:#fff;

  padding:35px;

  border-radius:24px;

  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.hero-form h3{
  font-size:30px;
  color:#111;

  margin-bottom:10px;
}

.hero-form p{
  color:#666;

  font-size:14px;
  line-height:1.6;

  margin-bottom:25px;
}

form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.form-row{
  display:flex;
  gap:12px;
}

input,
select,
textarea{
  width:100%;

  padding:14px;

  border:1px solid #ddd;

  border-radius:10px;

  outline:none;

  font-size:14px;
  font-family:'Poppins', sans-serif;
}

textarea{
  height:90px;
  resize:none;
}

button{
  width:100%;

  padding:16px;

  border:none;
  border-radius:12px;

  background:#ff5b1f;
  color:#fff;

  font-size:15px;
  font-weight:700;

  cursor:pointer;

  transition:0.3s;
}

button:hover{
  background:#ff7843;
}

.bottom-text{
  text-align:center;

  margin-top:15px;

  font-size:12px;
  color:#666;
}

/* =========================
   STATS
========================= */

.stats{
  width:100%;

  background:#ff5b1f;

  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:20px;

  padding:28px 5%;
}

.stat-box{
  text-align:center;
}

.stat-box h2{
  color:#fff;

  font-size:42px;

  font-family:'Inter',sans-serif;
}

.stat-box p{
  color:#fff;

  margin-top:8px;

  font-size:14px;
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:991px){

  .hero{
    flex-direction:column;
    align-items:flex-start;

    gap:25px;

    padding:40px 5%;
  }

  .hero-left{
    width:100%;
  }

  .hero-form{
    width:100%;
  }

  .hero-left h1{
    font-size:48px;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:767px){

  /* HEADER */

  .navbar{
    padding:10px 14px;
    gap:10px;
  }

  .logo{
    gap:7px;
  }

  .logo-box{
    width:32px;
    height:32px;

    font-size:12px;
  }

  .logo h2{
    font-size:14px;
    line-height:1.2;
  }

  .top-btn{
    padding:9px 12px;
    font-size:11px;

    white-space:nowrap;
  }

  /* HERO */

  .hero{
    flex-direction:column;

    align-items:flex-start;

    padding-top:25px;
    padding-bottom:25px;

    gap:22px;

    min-height:auto;
  }

  .hero-left{
    width:100%;
  }

  .hero-left h1{
    font-size:32px;
    line-height:1.2;

    margin-bottom:18px;
  }

  .hero-left p{
    font-size:14px;
    line-height:1.7;

    margin-bottom:22px;
  }

  .tag{
    font-size:11px;

    padding:8px 14px;

    margin-bottom:18px;
  }

  .contact-box{
    gap:10px;
  }

  .phone-card{
    width:100%;

    text-align:center;

    padding:12px;

    font-size:13px;
  }

  /* FORM */

  .hero-form{
    width:100%;

    padding:20px;

    border-radius:18px;
  }

  .hero-form h3{
    font-size:24px;
  }

  .form-row{
    flex-direction:column;
  }

  input,
  select,
  textarea{
    padding:12px;
    font-size:13px;
  }

  button{
    padding:14px;
    font-size:14px;
  }

  /* STATS */

  .stats{
    grid-template-columns:1fr 1fr;

    gap:15px;

    padding:20px 12px;
  }

  .stat-box h2{
    font-size:24px;
  }

  .stat-box p{
    font-size:11px;
  }

}




/* =========================
   BARCODE SERVICES SECTION
========================= */

.barcode-services-section{
  width:100%;
  padding:70px 5%;
  background:#f5f7fb;
}

.barcode-services-container{
  width:100%;
  max-width:1400px;
  margin:auto;
}

/* =========================
   TOP CONTENT
========================= */

.barcode-services-top{
  margin-bottom:45px;
}

.barcode-small-tag{
  display:inline-block;

  color:#ff5b1f;

  font-size:13px;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:14px;
}

.barcode-main-heading{
  font-size:58px;
  line-height:1.1;

  color:#091222;

font-family:'Inter',sans-serif;

  margin-bottom:20px;
}

.barcode-description{
  max-width:650px;

  color:#667085;

  line-height:1.8;
  font-size:16px;
}

/* =========================
   GRID
========================= */

.barcode-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

/* =========================
   CARD
========================= */

.barcode-card{
  background:#fff;

  border:1px solid #e6ebf2;

  border-radius:24px;

  padding:35px 30px;

  position:relative;

  transition:0.35s ease;

  overflow:hidden;
}

.barcode-card::before{
  content:"";

  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:4px;

  background:transparent;

  transition:0.3s;
}

.barcode-card:hover{
  transform:translateY(-8px);

  box-shadow:0 18px 40px rgba(0,0,0,0.08);

  border-color:#ff5b1f;
}

.barcode-card:hover::before{
  background:#ff5b1f;
}

.active-card{
  border-color:#ff5b1f;
}

.active-card::before{
  background:#ff5b1f;
}

/* =========================
   BADGES
========================= */

.popular-badge{
  display:inline-block;

  padding:7px 12px;

  background:#fff1eb;

  color:#ff5b1f;

  border:1px solid #ffc8b2;

  border-radius:50px;

  font-size:11px;
  font-weight:700;

  margin-bottom:20px;
}

.trusted-badge{
  background:#eefcf4;
  color:#0f9d58;
  border-color:#b8efcf;
}

/* =========================
   ICON
========================= */

.barcode-icon-box{
  width:58px;
  height:58px;

  background:#fff3ee;

  border-radius:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;

  margin-bottom:22px;
}

/* =========================
   CARD CONTENT
========================= */

.barcode-card h3{
  font-size:25px;
  line-height:1.3;

  color:#091222;

  margin-bottom:18px;
}

.barcode-card p{
  color:#667085;

  line-height:1.9;
  font-size:15px;
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:991px){

  .barcode-services-section{
    padding:50px 5%;
  }

  .barcode-main-heading{
    font-size:42px;
  }

  .barcode-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:767px){

  .barcode-services-section{
    padding-top:35px;
    padding-bottom:35px;
  }

  .barcode-services-top{
    margin-bottom:28px;
  }

  .barcode-small-tag{
    font-size:11px;
    margin-bottom:10px;
  }

  .barcode-main-heading{
    font-size:30px;
    line-height:1.2;

    margin-bottom:14px;
  }

  .barcode-description{
    font-size:14px;
    line-height:1.7;
  }

  .barcode-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .barcode-card{
    padding:22px 18px;
    border-radius:18px;
  }

  .barcode-icon-box{
    width:50px;
    height:50px;

    font-size:22px;

    margin-bottom:18px;
  }

  .barcode-card h3{
    font-size:20px;
    margin-bottom:12px;
  }

  .barcode-card p{
    font-size:13px;
    line-height:1.7;
  }

  .popular-badge{
    font-size:10px;
    padding:6px 10px;

    margin-bottom:16px;
  }

}




/* =========================
   WHO NEEDS BARCODE SECTION
========================= */

.barcode-user-section{
  width:100%;
  padding:70px 5%;
  background:#ffffff; /* WHITE BACKGROUND */
}

.barcode-user-container{
  width:100%;
  max-width:1400px;
  margin:auto;
}

/* =========================
   TOP CONTENT
========================= */

.barcode-user-top{
  margin-bottom:40px;
}

.barcode-user-tag{
  display:inline-block;

  color:#ff5b1f;

  font-size:12px;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:12px;
}

.barcode-user-heading{
  font-size:52px;
  line-height:1.1;

  color:#091222;

  font-family:'Inter',sans-serif;

  margin-bottom:18px;
}

.barcode-user-description{
  max-width:620px;

  color:#667085;

  line-height:1.8;
  font-size:15px;
}

/* =========================
   GRID
========================= */

.barcode-user-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

/* =========================
   CARD
========================= */

.barcode-user-card{
  background:#fff;

  border:1px solid #edf0f5;

  border-radius:18px;

  padding:22px 16px;

  text-align:center;

  transition:0.35s ease;
}

.barcode-user-card:hover{
  transform:translateY(-5px);

  border-color:#ff5b1f;

  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

/* =========================
   ICON
========================= */

.barcode-user-icon{
  width:52px;
  height:52px;

  margin:auto;
  margin-bottom:14px;

  background:#fff3ee;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;
}

/* =========================
   CARD CONTENT
========================= */

.barcode-user-card h3{
  font-size:18px;
  line-height:1.3;

  color:#091222;

  margin-bottom:10px;
}

.barcode-user-card p{
  color:#667085;

  font-size:12px;
  line-height:1.7;
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:991px){

  .barcode-user-section{
    padding:50px 5%;
  }

  .barcode-user-heading{
    font-size:38px;
  }

  .barcode-user-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:767px){

  .barcode-user-section{
    padding-top:32px;
    padding-bottom:32px;
    background:#ffffff;
  }

  .barcode-user-top{
    margin-bottom:24px;
  }

  .barcode-user-tag{
    font-size:10px;
    margin-bottom:8px;
  }

  .barcode-user-heading{
    font-size:28px;
    line-height:1.2;

    margin-bottom:12px;
  }

  .barcode-user-description{
    font-size:13px;
    line-height:1.7;
  }

  .barcode-user-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .barcode-user-card{
    padding:18px 14px;
    border-radius:16px;
  }

  .barcode-user-icon{
    width:46px;
    height:46px;

    font-size:20px;

    margin-bottom:12px;
  }

  .barcode-user-card h3{
    font-size:16px;
    margin-bottom:8px;
  }

  .barcode-user-card p{
    font-size:12px;
    line-height:1.6;
  }

}



/* =========================
   BARCODE BENEFITS SECTION
========================= */

.barcode-benefits-section{
  width:100%;
  padding:70px 5%;
  background:#f5f7fb;
}

.barcode-benefits-container{
  width:100%;
  max-width:1400px;
  margin:auto;

  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:35px;
}

/* =========================
   LEFT SIDE
========================= */

.barcode-benefits-left{
  width:54%;
}

.barcode-benefits-tag{
  display:inline-block;

  color:#ff5b1f;

  font-size:12px;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:14px;
}

.barcode-benefits-heading{
  font-size:56px;
  line-height:1.1;

  color:#091222;

  font-family:'Inter',sans-serif;

  margin-bottom:34px;
}

/* =========================
   LIST
========================= */

.barcode-benefits-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.barcode-benefits-item{
  display:flex;
  align-items:flex-start;

  gap:14px;

  padding-bottom:16px;

  border-bottom:1px solid #edf0f5;
}

/* CHECK ICON */

.barcode-check-icon{
  min-width:34px;
  height:34px;

  background:#ff5b1f;
  color:#fff;

  border-radius:10px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:16px;
  font-weight:700;
}

/* TEXT */

.barcode-benefits-text h3{
  font-size:19px;
  line-height:1.3;

  color:#091222;

  margin-bottom:6px;
}

.barcode-benefits-text p{
  color:#667085;

  font-size:13px;
  line-height:1.7;
}

/* =========================
   RIGHT CARD
========================= */

.barcode-benefits-right{
  width:42%;
}

.barcode-dark-card{
  position:relative;

  background:#162338;

  border-radius:24px;

  padding:38px 30px;

  overflow:hidden;
}

/* =========================
   BARCODE IMAGE
========================= */

.barcode-image{
  width:190px;

  height:auto;

  object-fit:contain;

  display:block;

  margin-bottom:24px;

  background:#fff;

  padding:10px;

  border-radius:12px;

  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* =========================
   CARD CONTENT
========================= */

.barcode-dark-card h3{
  font-size:30px;
  line-height:1.2;

  color:#fff;

  margin-bottom:14px;
}

.barcode-dark-card p{
  color:#c6d0dc;

  font-size:14px;
  line-height:1.8;

  margin-bottom:24px;
}

/* =========================
   MINI TAGS
========================= */

.barcode-mini-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.barcode-mini-tags span{
  background:rgba(255,255,255,0.08);

  color:#fff;

  padding:10px 14px;

  border-radius:10px;

  font-size:12px;
}

/* =========================
   BG CIRCLE
========================= */

.barcode-bg-circle{
  position:absolute;

  right:-60px;
  bottom:-60px;

  width:180px;
  height:180px;

  background:rgba(255,91,31,0.14);

  border-radius:50%;
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:991px){

  .barcode-benefits-container{
    flex-direction:column;
  }

  .barcode-benefits-left,
  .barcode-benefits-right{
    width:100%;
  }

  .barcode-benefits-heading{
    font-size:42px;
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:767px){

  .barcode-benefits-section{
    padding-top:35px;
    padding-bottom:35px;
  }

  .barcode-benefits-container{
    gap:24px;
  }

  .barcode-benefits-tag{
    font-size:10px;
    margin-bottom:10px;
  }

  .barcode-benefits-heading{
    font-size:30px;
    line-height:1.2;

    margin-bottom:24px;
  }

  .barcode-benefits-list{
    gap:14px;
  }

  .barcode-benefits-item{
    gap:12px;

    padding-bottom:14px;
  }

  .barcode-check-icon{
    min-width:30px;
    height:30px;

    font-size:14px;

    border-radius:8px;
  }

  .barcode-benefits-text h3{
    font-size:16px;
    margin-bottom:5px;
  }

  .barcode-benefits-text p{
    font-size:12px;
    line-height:1.6;
  }

  /* RIGHT CARD */

  .barcode-dark-card{
    padding:24px 18px;

    border-radius:18px;
  }

  .barcode-image{
    width:135px;

    margin-bottom:18px;
  }

  .barcode-dark-card h3{
    font-size:22px;
  }

  .barcode-dark-card p{
    font-size:13px;

    line-height:1.7;

    margin-bottom:16px;
  }

  .barcode-mini-tags{
    gap:8px;
  }

  .barcode-mini-tags span{
    padding:8px 10px;

    font-size:10px;
  }

  .barcode-bg-circle{
    width:130px;
    height:130px;

    right:-45px;
    bottom:-45px;
  }

}


/* =========================
   BARCODE BENEFITS SECTION
========================= */

.barcode-advantages-section{
  width:100%;
  padding:70px 5%;
  background:#040b16;
}

.barcode-advantages-container{
  width:100%;
  max-width:1400px;
  margin:auto;
}

/* =========================
   TOP CONTENT
========================= */

.barcode-advantages-top{
  margin-bottom:42px;
}

.barcode-advantages-tag{
  display:inline-block;

  color:#ff5b1f;

  font-size:12px;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:14px;
}

.barcode-advantages-heading{
  font-size:58px;
  line-height:1.1;

  color:#ffffff;

  font-family:'Inter',sans-serif;

  margin-bottom:18px;

  max-width:1100px;
}

.barcode-advantages-description{
  max-width:650px;

  color:#97a5b8;

  line-height:1.8;
  font-size:15px;
}

/* =========================
   GRID
========================= */

.barcode-advantages-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

/* =========================
   CARD
========================= */

.barcode-advantages-card{
  background:linear-gradient(180deg,#111927,#151f2f);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:20px;

  padding:28px 22px;

  transition:0.35s ease;
}

.barcode-advantages-card:hover{
  transform:translateY(-6px);

  border-color:#ff5b1f;

  box-shadow:0 15px 35px rgba(0,0,0,0.35);
}

/* =========================
   NUMBER
========================= */

.barcode-card-number{
  display:block;

  font-size:54px;
  line-height:1;

  font-weight:700;

  color:rgba(255,91,31,0.55);

  margin-bottom:18px;

  font-family:'Inter',sans-serif;
}

/* =========================
   CARD CONTENT
========================= */

.barcode-advantages-card h3{
  font-size:20px;
  line-height:1.3;

  color:#ffffff;

  margin-bottom:12px;
}

.barcode-advantages-card p{
  color:#97a5b8;

  font-size:13px;
  line-height:1.8;
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:991px){

  .barcode-advantages-section{
    padding:50px 5%;
  }

  .barcode-advantages-heading{
    font-size:42px;
  }

  .barcode-advantages-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:767px){

  .barcode-advantages-section{
    padding-top:35px;
    padding-bottom:35px;
  }

  .barcode-advantages-top{
    margin-bottom:26px;
  }

  .barcode-advantages-tag{
    font-size:10px;
    margin-bottom:10px;
  }

  .barcode-advantages-heading{
    font-size:28px;
    line-height:1.2;

    margin-bottom:12px;
  }

  .barcode-advantages-description{
    font-size:13px;
    line-height:1.7;
  }

  .barcode-advantages-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .barcode-advantages-card{
    padding:22px 18px;

    border-radius:16px;
  }

  .barcode-card-number{
    font-size:40px;

    margin-bottom:14px;
  }

  .barcode-advantages-card h3{
    font-size:17px;

    margin-bottom:8px;
  }

  .barcode-advantages-card p{
    font-size:12px;
    line-height:1.7;
  }

}





/* =========================
   BARCODE PROCESS SECTION
========================= */

.barcode-process-section{
  width:100%;
  padding:70px 5%;
  background:#f5f7fb;
}

.barcode-process-container{
  width:100%;
  max-width:1400px;
  margin:auto;
}

/* =========================
   TOP CONTENT
========================= */

.barcode-process-top{
  text-align:center;

  margin-bottom:65px;
}

.barcode-process-tag{
  display:inline-block;

  color:#ff5b1f;

  font-size:13px;
  font-weight:700;

  letter-spacing:1px;

  margin-bottom:16px;
}

/* MAIN HEADING SIZE KAM */

.barcode-process-heading{
  font-size:52px;
  line-height:1.1;

  color:#091222;

  font-family:'Inter',sans-serif;

  margin-bottom:18px;
}

.barcode-process-description{
  color:#6b7280;

  font-size:17px;
  line-height:1.8;
}

/* =========================
   PROCESS WRAPPER
========================= */

.barcode-process-wrapper{
  position:relative;

  display:grid;
  grid-template-columns:repeat(5,1fr);

  gap:22px;
}

/* CENTER LINE */

.barcode-process-line{
  position:absolute;

  top:26px;
  left:10%;

  width:80%;
  height:3px;

  background:#ff5b1f;

  z-index:1;
}

/* =========================
   CARD
========================= */

.barcode-process-card{
  position:relative;

  text-align:center;

  z-index:2;
}

/* STEP CIRCLE */

.barcode-step-circle{
  width:58px;
  height:58px;

  margin:auto;
  margin-bottom:22px;

  background:#f5f7fb;

  border:3px solid #ff5b1f;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#ff5b1f;

  font-size:24px;
  font-weight:700;

  font-family:'Inter',sans-serif;
}

/* CARD CONTENT */

.barcode-process-card h3{
  font-size:22px;
  line-height:1.3;

  color:#091222;

  margin-bottom:12px;
}

.barcode-process-card p{
  color:#667085;

  font-size:14px;
  line-height:1.8;
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:991px){

  .barcode-process-section{
    padding:55px 5%;
  }

  .barcode-process-heading{
    font-size:42px;
  }

  .barcode-process-wrapper{
    grid-template-columns:repeat(2,1fr);
    gap:24px;
  }

  .barcode-process-line{
    display:none;
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:767px){

  .barcode-process-section{
    padding-top:35px;
    padding-bottom:35px;
  }

  .barcode-process-top{
    margin-bottom:28px;
  }

  .barcode-process-tag{
    font-size:10px;

    margin-bottom:10px;
  }

  .barcode-process-heading{
    font-size:28px;
    line-height:1.2;

    margin-bottom:12px;
  }

  .barcode-process-description{
    font-size:13px;
    line-height:1.7;
  }

  /* 2 GRID MOBILE */

  .barcode-process-wrapper{
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }

  .barcode-process-line{
    display:none;
  }

  /* LAST BOX CENTER */

  .barcode-process-card:last-child{
    grid-column:1 / -1;

    max-width:220px;

    margin:auto;
  }

  .barcode-process-card{
    background:#ffffff;

    padding:18px 14px;

    border-radius:16px;

    border:1px solid #e7ebf2;
  }

  .barcode-step-circle{
    width:46px;
    height:46px;

    font-size:18px;

    margin-bottom:14px;
  }

  .barcode-process-card h3{
    font-size:15px;

    line-height:1.4;

    margin-bottom:7px;
  }

  .barcode-process-card p{
    font-size:11px;

    line-height:1.6;
  }

}


/* =========================
   BARCODE CTA + FOOTER
========================= */

.barcode-footer-section{
  width:100%;
}

/* =========================
   CTA AREA
========================= */

.barcode-footer-cta{
  width:100%;

  padding:85px 5%;

  background:linear-gradient(90deg,#ef4b17,#cf3405);
}

.barcode-footer-container{
  width:100%;
  max-width:1300px;

  margin:auto;

  text-align:center;
}

/* =========================
   MAIN HEADING
========================= */

.barcode-footer-heading{
  font-size:56px; /* SIZE KAM */
  line-height:1.1;

  color:#ffffff;

  font-family:'Inter',sans-serif;

  margin-bottom:22px;
}

/* =========================
   DESCRIPTION
========================= */

.barcode-footer-description{
  max-width:760px;

  margin:auto;
  margin-bottom:40px;

  color:#ffe6dd;

  font-size:20px;
  line-height:1.8;
}

/* =========================
   BUTTONS
========================= */

.barcode-footer-buttons{
  display:flex;
  align-items:center;
  justify-content:center;

  flex-wrap:wrap;

  gap:16px;
}

.barcode-call-btn{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:10px;

  padding:18px 28px;

  border:2px solid rgba(255,255,255,0.35);

  border-radius:14px;

  background:rgba(255,255,255,0.08);

  color:#ffffff;

  text-decoration:none;

  font-size:26px;
  font-weight:700;

  transition:0.35s ease;
}

.barcode-call-btn:hover{
  background:#ffffff;

  color:#ef4b17;

  transform:translateY(-4px);
}

/* =========================
   FOOTER
========================= */

.barcode-main-footer{
  width:100%;

  background:#030915;

  padding:30px 5%;
}

.barcode-footer-copy{
  color:#94a3b8;

  font-size:18px;
  line-height:1.8;

  margin-bottom:12px;
}

.barcode-footer-copy span{
  color:#ffb100;

  font-weight:700;
}

.barcode-footer-note{
  color:#6b7280;

  font-size:15px;
  line-height:1.8;
}

/* =========================
   TABLET VIEW
========================= */

@media(max-width:991px){

  .barcode-footer-heading{
    font-size:42px;
  }

  .barcode-footer-description{
    font-size:17px;
  }

  .barcode-call-btn{
    font-size:20px;
    padding:16px 24px;
  }

}

/* =========================
   MOBILE VIEW
========================= */

@media(max-width:767px){

  .barcode-footer-cta{
    padding-top:40px;
    padding-bottom:40px;
  }

  .barcode-footer-heading{
    font-size:28px;
    line-height:1.2;

    margin-bottom:14px;
  }

  .barcode-footer-description{
    font-size:13px;
    line-height:1.7;

    margin-bottom:24px;
  }

  /* BUTTON GRID */

  .barcode-footer-buttons{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:12px;
  }

  .barcode-call-btn{
    width:100%;

    padding:14px 10px;

    font-size:15px;

    border-radius:12px;
  }

  /* LAST BUTTON CENTER */

  .barcode-call-btn:last-child{
    grid-column:1 / -1;

    max-width:220px;

    margin:auto;
  }

  /* FOOTER */

  .barcode-main-footer{
    padding-top:22px;
    padding-bottom:22px;
  }

  .barcode-footer-copy{
    font-size:12px;
    line-height:1.7;

    margin-bottom:10px;
  }

  .barcode-footer-note{
    font-size:11px;
    line-height:1.7;
  }

}/* End custom CSS */