/* AI screen style start here  */
:root {
  --teal-light: #78B9B5;
  --teal-dark: #0F828C;
  --blue-dark: #065084;
  --violet: #320A6B;
  --orange: #FE7743;
  --navy: #273F4F;
  --sky: #447D9B;
  --gray-light: #D7D7D7;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.7;
  background-color: var(--gray-light);
  color: var(--navy);
}

.ai_b-section {
  padding: 60px 20px;
}

.ai_b-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--violet);
}

.ai_b-subheading {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.ai_b-checklist {
  list-style-type: none;
  padding-left: 0;
}

.ai_b-checklist li::before {
  content: '\2714';
  margin-right: 10px;
  color: var(--teal-dark);
}

.ai_b-striped:nth-child(even) {
  background-color: var(--teal-light);
}

strong {
  color: var(--teal-dark);
}

ol>li {
  margin-bottom: 10px;
}

ul li {
  margin-bottom: 6px;
}

.industry-card {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid var(--teal-dark);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.industry-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--orange);
}

.ai_b_F_tool-section {
  padding: 60px 20px;
  background-color: white;
}

.ai_b_F_tool-title {
  font-size: 1.75rem;
  color: var(--violet);
  font-weight: bold;
  margin-bottom: 30px;
}

.ai_b_F_tool-card {
  border: 1px solid var(--sky);
  border-left: 5px solid var(--blue-dark);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  background-color: var(--gray-light);
}

.ai_b_F_tool-card h4 {
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 15px;
}

.ai_b_F_tool-card p {
  margin-bottom: 10px;
}

.ai_b_F_tool-sublist {
  padding-left: 20px;
}

.ai_b_s_dev-section {
  background-color: #fff;
  padding: 60px 20px;
}

.ai_b_s_dev-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--violet);
  margin-bottom: 30px;
  text-align: center;
}

.ai_b_s_dev-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background: var(--gray-light);
  padding: 20px;
  border-left: 6px solid var(--teal-dark);
  border-radius: 10px;
}

.ai_b_s_dev-number {
  background-color: var(--teal-dark);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
}

.ai_b_s_dev-content h5 {
  color: var(--orange);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.ai_b_s_dev-cta {
  background-color: var(--teal-dark);
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: background-color 0.3s ease;
  color: #fff;
}

.ai_b_s_dev-cta:hover {
  background-color: var(--blue-dark);
  color: #fff;
}

/* AI screen style END here  */


/* Machine Learning Style Start Here  */

.ml_b_s-title {
  color: #131D4F;
  font-size: 2.2rem;
  font-weight: 700;
}

.ml_b_s-subtitle {
  color: #254D70;
  font-size: 1.1rem;
}

.ml_b_s-card {
  background-color: #fff;
  border-left: 5px solid #954C2E;
  transition: transform 0.3s ease;
}

.ml_b_s-card:hover {
  transform: translateY(-6px);
  background-color: #fdfaf5;
}

.ml_b_s-icon {
  color: #254D70;
  font-size: 2rem;
}

.ml_b_s-heading {
  color: #131D4F;
  font-size: 1.25rem;
  font-weight: 600;
}

.ml_b_s-text {
  color: #333;
  font-size: 0.95rem;
}

.ml_b_n-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0E2148;
}

.ml_b_n-title .highlight {
  color: #483AA0;
}

.ml_b_n-desc {
  font-size: 1rem;
  color: #0E2148;
}

.ml_b_n-box {
  background-color: #fff;
  border-bottom: 5px solid #483AA0;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ml_b_n-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.ml_b_n-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0E2148;
}

.ml_b_n-text {
  font-size: 0.95rem;
  color: #333;
}

/* ========== Responsive Fixes ========== */

@media (max-width: 992px) {
  .ml_b_n-title {
    font-size: 1.75rem;
    text-align: center;
  }

  .ml_b_n-desc {
    font-size: 0.95rem;
    text-align: center;
  }

  .ml_b_n-image {
    text-align: center !important;
    margin-bottom: 20px;
  }

  .ml_b_n-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .ml_b_n-title {
    font-size: 1.5rem;
  }

  .ml_b_n-heading {
    font-size: 1rem;
  }

  .ml_b_n-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .ml_b_n-box {
    padding: 1rem;
  }

  .ml_b_n-title {
    font-size: 1.4rem;
  }
}




.ml_b_r-section {
  background: #F8F9FC;
  padding: 60px 0;
}

.ml_b_r-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0E2148;
}

.ml_b_r-title .highlight {
  color: #483AA0;
}

.ml_b_r-subtitle {
  font-size: 1rem;
  color: #333;
  margin-top: 15px;
}

.ml_b_r-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ml_b_r-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.ml_b_r-icon {
  font-size: 1.8rem;
  color: #7965C1;
  margin-right: 15px;
  flex-shrink: 0;
}

.ml_b_r-list h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0E2148;
  margin-bottom: 5px;
}

.ml_b_r-list p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .ml_b_r-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .ml_b_r-subtitle {
    text-align: center;
  }

  .ml_b_r-list li {
    flex-direction: row;
    align-items: flex-start;
  }

  .ml_b_r-icon {
    font-size: 1.5rem;
    margin-right: 12px;
  }
}

/* Machine Learning Style End Here  */


/* Iot style start here  */
.iot_dev-section {
  background-color: #f8fbfd;
}

.iot_dev-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0a1f44;
}

.iot_dev-para {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.iot_dev-image {
  max-width: 100%;
  height: auto;
}


.iot_serv-section {
  background-color: #ffffff;
}

.iot_serv-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0a1f44;
}

.iot_serv-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.iot_serv-item {
  align-items: flex-start;
}

.iot_serv-icon {
  font-size: 1.8rem;
  color: #0a58ca;
  flex-shrink: 0;
  margin-top: 4px;
}

.iot_serv-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 4px;
}

.iot_serv-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.iot_process-section {
  background-color: #f7fafd;
}

.iot_process-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0a1f44;
}

.iot_process-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 850px;
  margin: 0 auto;
}

.iot_process-wrapper {
  border-left: 3px solid #0a58ca;
  padding-left: 30px;
  position: relative;
}

.iot_process-step {
  position: relative;
  margin-bottom: 40px;
}

.iot_process-number {
  position: absolute;
  left: -45px;
  top: 0;
  background-color: #0a58ca;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
}

.iot_process-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 5px;
}

.iot_process-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}


.iot_services-section {
  background-color: #f8fafc;
}

.iot_services-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0a1f44;
}

.iot_services-title span {
  color: #007bff;
}

.iot_services-intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 10px;
}

.iot_service-item {
  background: #fff;
  border: 1px solid #e1e5ed;
  border-radius: 10px;
  padding: 24px;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.iot_service-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.iot_service-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a1f44;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.iot_service-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .iot_services-title {
    font-size: 1.6rem;
  }

  .iot_services-intro {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .iot_service-item {
    padding: 18px;
  }

  .iot_service-item h5 {
    font-size: 1rem;
  }

  .iot_service-item p {
    font-size: 0.9rem;
  }
}




.iot_pd-section {
  background: #f9fafd;
}

.iot_pd-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002b5b;
}

.iot_pd-subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

.iot_pd-box {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border-left: 5px solid #0d6efd;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.iot_pd-box:nth-child(1) {
  animation-delay: 0.1s;
}

.iot_pd-box:nth-child(2) {
  animation-delay: 0.2s;
}

.iot_pd-box:nth-child(3) {
  animation-delay: 0.3s;
}

.iot_pd-box:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.iot_pd-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.iot_pd-box h5 {
  font-weight: 600;
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 8px;
}

.iot_pd-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .iot_pd-title {
    font-size: 1.8rem;
  }

  .iot_pd-box {
    padding: 20px;
  }

  .iot_pd-box h5 {
    font-size: 1.05rem;
  }

  .iot_pd-box p {
    font-size: 0.9rem;
  }
}






.iot_formal-section {
  padding: 60px 15px;
  background: #fff;
  font-family: 'Arial', sans-serif;
}

.iot_formal-header {
  text-align: center;
  margin-bottom: 40px;
}

.iot_formal-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #002244;
}

.iot_formal-header p {
  font-size: 16px;
  max-width: 750px;
  margin: 10px auto 0;
  color: #555;
}

.iot_formal-item {
  margin-bottom: 30px;
}

.iot_formal-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #003366;
}

.iot_formal-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .iot_formal-item {
    margin-bottom: 25px;
  }

  .iot_formal-header h2 {
    font-size: 24px;
  }
}

/* Iot style End  here  */



/* Chat bots style start here  */

.cb_b_dev_sec {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  color: #1A2A80;
}

.cb_b_dev-wrapper h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #1A2A80;
}

.cb_b_dev-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #1A2A80;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .cb_b_dev-wrapper h2 {
    font-size: 26px;
  }

  .cb_b_dev-content p {
    font-size: 15px;
  }
}


.cb_b_dev-section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.cb_b_dev-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #1A2A80;
}

.cb_b_dev-section p.cb_b_dev-sub {
  font-size: 16px;
  margin-bottom: 50px;
  color: #3B38A0;
}

.cb_b_dev-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  row-gap: 30px;
}

.cb_b_dev-item {
  flex: 0 0 calc(16.66% - 10px);
  max-width: calc(16.66% - 10px);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cb_b_dev-icon {
  background-color: #1A2A80;
  padding: 25px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 20px;
  width: 100px;
  height: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cb_b_dev-icon::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 20px 10px 0;
  border-style: solid;
  border-color: #1A2A80 transparent transparent transparent;
}

.cb_b_dev-icon img {
  width: 50px;
  height: 50px;
}

.cb_b_dev-title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 12px;
  color: #1A2A80;
}

.cb_b_dev-desc {
  font-size: 1rem;
  color: #3B38A0;
  min-height: 140px;
  line-height: 1.5;
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .cb_b_dev-item {
    flex: 0 0 45%;
  }
}

@media screen and (max-width: 576px) {
  .cb_b_dev-item {
    flex: 0 0 100%;
  }
}


.cb_b_n_dev-section {
  background-color: #F5F7FE;
  padding: 60px 20px;
  color: #1A2A80;
}

.cb_b_n_dev-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cb_b_n_dev-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1A2A80;
}

.cb_b_n_dev-desc {
  text-align: center;
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: #3B38A0;
}

.cb_b_n_dev-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.cb_b_n_dev-item {
  padding: 10px 0;
}

.cb_b_n_dev-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1A2A80;
}

.cb_b_n_dev-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #3B38A0;
}

@media (max-width: 768px) {
  .cb_b_n_dev-title {
    font-size: 26px;
  }

  .cb_b_n_dev-desc {
    font-size: 15px;
  }
}

/* Chat bots style End here  */

/* blackchain style start here  */

/* Responsive Blockchain Advantages Section */
.bc_b_adv_enterprise {
  background: #f7f9fc;
}

.bc_b_adv_title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b2e59;
}

.bc_b_adv_subtitle {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

.bc_b_adv_box {
  background: #fff;
  border-left: 4px solid #009dc8;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.bc_b_adv_box:hover {
  transform: translateY(-5px);
}

.bc_b_adv_heading {
  font-size: 1.25rem;
  color: #0b2e59;
  margin-bottom: 10px;
  font-weight: 600;
}

.bc_b_adv_text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}






.bc_b_choose_blockchain {
  background: #c4d7ff;
}

.bc_b_choose_item {
  background: linear-gradient(135deg, #645b9d, #483d8b);
  color: #ddd3d3;
  border-radius: 0px 50px;
  padding: 20px 30px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.bc_b_choose_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 5px;
  opacity: 0.4;
  border-radius: 3px;
}

.bc_b_question {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.bc_b_answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  padding-top: 20px;
  padding-left: 50px;

}

.bc_b_icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1.2;
  border-left: 5px solid #d8c5c5;
  border-radius: 5px;
  padding-left: 5px;
}

.bc_b_question h4 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 700;
}

.bc_b_answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;

}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bc_b_choose_item {
    padding: 15px 20px;
  }

  .bc_b_icon {
    font-size: 1.3rem;
  }

  .bc_b_question h4 {
    font-size: 1rem;
  }
}






.bc_b_masonry_section {
  background: linear-gradient(to bottom right, #715bdc 50%, #ebd2d2 50%);
  color: #fff;
  padding: 60px 20px;
}

.bc_b_masonry_container {
  max-width: 1300px;
  margin: auto;
}

.bc_b_masonry_title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.bc_b_masonry_intro {
  font-size: 16px;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.bc_b_masonry_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.bc_b_masonry_card {
  background: #fff;
  color: #2d2d2d;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: calc(33.333% - 20px);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc_b_masonry_card:hover {
  transform: translateY(-5px);
}

.bc_b_masonry_card i {
  font-size: 30px;
  color: #5c3df3;
}

.bc_b_masonry_card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #3b2fc9;
}

.bc_b_masonry_card p {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .bc_b_masonry_card {
    flex-basis: 100% !important;
  }

  .bc_b_masonry_title {
    font-size: 28px;
  }
}





/* line trough code style here  */
.bc_b_e_pro_section {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0e0e2c 0%, #005f73 100%);
}

.bc_b_e_pro_section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: url('https://www.svgrepo.com/show/4301/process.svg') no-repeat right center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.bc_b_e_pro_container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.bc_b_e_pro_title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 80px;
  color: #00ffc8;
}

.bc_b_e_pro_timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bc_b_e_pro_timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #00ffc8;
  transform: translateX(-50%);
}

.bc_b_e_pro_item {
  position: relative;
  width: 50%;
  padding: 15px 40px;
  box-sizing: border-box;
}

.bc_b_e_pro_item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.bc_b_e_pro_item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.bc_b_e_pro_item::before {
  content: '';
  position: absolute;
  top: 40px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00ffc8;
  border: 4px solid #ffffff;
  z-index: 2;
}

.bc_b_e_pro_item:nth-child(odd)::before {
  right: -10px;
}

.bc_b_e_pro_item:nth-child(even)::before {
  left: -10px;
}

.bc_b_e_pro_content {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  backdrop-filter: blur(6px);
}

.bc_b_e_pro_icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  /* filter: brightness(0) invert(1); */
}

.bc_b_e_pro_content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 20px;
}

.bc_b_e_pro_content p {
  margin: 0;
  color: #dcdcdc;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive Fixes */
@media screen and (max-width: 992px) {
  .bc_b_e_pro_timeline::before {
    display: none;
  }

  .bc_b_e_pro_item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  .bc_b_e_pro_item::before {
    left: 10px !important;
    right: auto !important;
  }

  .bc_b_e_pro_content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
  }

  .bc_b_e_pro_icon {
    width: 36px;
    height: 36px;
  }
}

@media screen and (max-width: 480px) {
  .bc_b_e_pro_title {
    font-size: 26px;
  }

  .bc_b_e_pro_content {
    padding: 20px;
  }

  .bc_b_e_pro_content h3 {
    font-size: 18px;
  }

  .bc_b_e_pro_content p {
    font-size: 14px;
  }
}

/* line trough code style here  End */

/* Industries style start here  */
.bc_b_indust_section {
  padding: 70px 20px;
  max-width: 1200px;
  margin: auto;
}

.bc_b_indust_title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #0f172a;
}

.bc_b_indust_block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #cbd5e1;
}

.bc_b_indust_icon {
  font-size: 28px;
  flex-shrink: 0;
  color: #2563eb;
  margin-top: 4px;
}

.bc_b_indust_content h3 {
  margin: 0;
  font-size: 20px;
  color: #1e293b;
}

.bc_b_indust_content p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .bc_b_indust_block {
    flex-direction: column;
    align-items: flex-start;
  }

  .bc_b_indust_icon {
    margin-bottom: 8px;
  }
}

/* Industries style End here  */

/* Difference between items start */
.bc_b_net_section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

.bc_b_net_title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  color: #0f172a;
}

.bc_b_net_intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #475569;
}

.bc_b_net_block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  padding-left: 20px;
  background: linear-gradient(90deg, #ffffff, #f8fafc);
  box-shadow: 10px 10px 20px;
  padding: 20px;
  border-radius: 8px;
}

.bc_b_net_icon {
  font-size: 30px;
  color: #2563eb;
  margin-top: 5px;
  flex-shrink: 0;
}

.bc_b_net_content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #1e293b;
}

.bc_b_net_content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .bc_b_net_block {
    flex-direction: column;
    border-left: none;
    border-top: 4px solid #2563eb;
    padding-left: 15px;
    padding-top: 15px;
  }

  .bc_b_net_icon {
    margin-bottom: 10px;
  }
}

/* Difference between items End  */



/* blackchain style End  here  */

/* Augmented style  Here start  */

.arvr_s_section {
  padding: 60px;
  background-image: url('../content_imgs/augmented_sec.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  color: azure;
  font-family: 'outfit';
}

.arvr_s_title {
  font-weight: 700;
  color: #fbfbf5;
  font-size: 1.2rem;
}

.arvr_s_content {
  font-size: 1.1rem;
  color: #ffffff;
}

@media (max-width: 767px) {
  .arvr_s_title {
    margin-bottom: 10px;
  }

  .arvr_s_content {
    text-align: left;
    width: fit-content;
  }
}


.ag_b_ar_sec {
  background-color: #b7d3f1;
  font-family: "outfit";
}

.ar_need_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;

}

.ar_need_section h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
}

.ar_need_section p.intro {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.ar_need_item {
  margin-bottom: 25px;
}

.ar_need_item h3 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-weight: bold;
}

.ar_need_item p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ar_need_section {
    padding: 30px 15px;
  }
}

/* Augmented style  Here END   */