html {
  scroll-behavior: smooth;
}

/* ===================================
   Hero Section
=================================== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background-image: url(../images/hero_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.hero h1 {
  font-family: 'Koulen', sans-serif;
  font-size: 72px;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 400;
}

.hero .build-text {
   display: inline-table;
   vertical-align: middle;
  }

.text-bg {       
    /* Gradient border */
    border-image: linear-gradient(90.42deg, #0092EF -6.39%, #A7DDFF 104.74%);
    border-image-slice: 1;  
    backdrop-filter: blur(4px);
    background: hsl(203.18deg 100% 82.75% / 56%);
    display: inline-block;
    border-radius: 25px;
    padding: 7px 15px;
    margin-bottom: 20px;
}

/* Create rounded gradient border */
.text-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.6px; /* same as your border thickness */
  background: linear-gradient(90.42deg, #0092EF -6.39%, #A7DDFF 104.74%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Gradient text */
.text_gradient {
  background: linear-gradient(360deg, #2278AE 0%, #5CC0FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
  font-weight: 600;
   font-family: "Roboto Condensed", sans-serif;
}

.subtext {
  color: #555555;
  display: block;
  max-width: 580px;
  font-family: 'Inter';
  margin: auto;
  font-size: 1rem;
  font-weight: 400;
}


/* ===============================
   Hero Email Input Section
================================= */
.hero_email_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #EBF7FF;
  border: 1px solid #318EC933;
  border-radius: 50px;
  padding: 6px;
  max-width: 500px;
  width: 100%;
  margin: 20px auto;
  letter-spacing: 1px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hero_email_input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  padding: 10px 20px;
  color: #318EC9;
   font-family: "Roboto Condensed", sans-serif;
}

.hero_email_input::placeholder {
  color: #318EC9;
  font-weight: 500;
   font-family: "Roboto Condensed", sans-serif;
}

.hero_email_btn {
  background: #318EC9;
  border: 1px solid #2196f3;
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto Condensed", sans-serif;
}

.hero_email_btn:hover {
  background: #EBF7FF;
  color: #318EC9;
  border-color: #318EC9;
}

/* ===============================
   Responsive Adjustments
================================= */
@media (max-width: 768px) {
  .hero_email_wrapper {
    max-width: 90%;
  }
  .hero_email_input {
    font-size: 14px;
    padding: 8px 14px;
  }
  .hero_email_btn {
    font-size: 14px;
    padding: 8px 18px;
  }
}


/* ===================================
   Expertise Slider
=================================== */
.expertise {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.expertise-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none; /* hide scrollbar Firefox */
}

.expertise-slider::-webkit-scrollbar {
  display: none; /* hide scrollbar Chrome */
}

.expertise-slider span {
  flex: 0 0 auto;
  border: 1px solid #2196f3;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0d0d0d;
  background-color: #fff;
  transition: all 0.3s ease;
  margin: 0px 10px;
}

.expertise-slider span:hover {
  background-color: #2196f3;
  color: #fff;
  transform: translateY(-2px);
}

/* responsive */
@media (max-width: 768px) {
  .expertise-slider span {
    font-size: 14px;
    padding: 6px 14px;
  }
}

/* ===================================
   About Section
=================================== */
.about {
  background-color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  font-family: 'Inter';;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
  position: relative;
}

/* Left side image grid */
.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-image img{
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}



.about-images .img-box {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-images .img-box:hover img {
  transform: scale(1.05);
}

/* Right side content */
.about-content {
  position: relative;
  z-index: 2;
}


.about-subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  color: #3A98D0;
}

.about-title {
  font-size: 2.9rem;
  font-weight: 800;
  color: #000;
  margin-top: 5px;
}

.about-description {
  font-size: 1.2rem;
  color: #898989;
  line-height: 1.6;
  margin: 15px 0 20px;
}

.learn-more-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 1.5px solid #3A98D0;
  border-radius: 8px;
  color: #3A98D0;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #3A98D0;
  color: #fff;
}

.learn-more-btn i {
  margin-left: 8px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
}

.about-stats .stat h3 {
  color: #3A98D0;
  font-weight: 700;
  font-size: 20px;
}

.about-stats .stat p {
  color: #838383;
}

.about-stats .divider {
  width: 1px;
  height: 35px;
  background-color: #dcdcdc;
}

@media (max-width: 1332px) {
  .about-title {
    font-size: 2.1rem;
  }
  .about-subtitle {
    font-size: 1.5rem;
  }
  .about-description {
    font-size: 1rem;
  }
}

@media (max-width: 1220px) { 
  .section-bg-text {
    font-size: 5rem;
  }
}



/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-images {
    order: 2;
  }

  .about-content {
    order: 1;
  }

  .section-bg-text {
    font-size: 70px;
    top: -20px;
    text-align: center;
    left: 0;
    right: 0;
  }

  .about-stats {
    justify-content: center;
  }
  .about-content .section-header {
    justify-content: center;
  }
}

@media screen and (min-width: 799px) and (max-width: 992px)  { 
  .about-image img {
    max-width: auto;
    width: auto;
  }
}
/* Responsive Fix */
@media (max-width: 768px) {
  /* .our_service_header h2 {
    font-size: 1.6rem;
  } */
  .our_service_view_all {
    position: relative;
    display: inline-block;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .about-title {
    font-size: 26px;
  }
  .about-subtitle {
    font-size: 20px;
  }
  .section-title {
    font-size: 18px;
  }
  .section-bg-text , .our_service_header h2 {
    font-size: 50px;
  }
}

/* Section */
.our_service_section {
  position: relative;
  padding: 20px 20px;
  background: #0b163b;
  color: #fff;
  overflow: hidden;
  border-radius: 16px;
}

/* Overlay Image */
.our_service_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/our_service_bg.png);
    z-index: 0;
    background-repeat: no-repeat;
}

/* Container */
.our_service_container {
  position: relative;
  z-index: 1;
  /* max-width: 1200px; */
  margin: auto;
}

/* Header */
.our_service_header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.our_service_header .main-section-heading .section-bg-text {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
    color: #020E37;
    opacity: 0.2;
    width: auto;
}
.our_service_header .main-section-heading .section-header .section-title {
  color: #fff;
  font-size: 30px;
}


.our_service_header p {
  color: #fff;
  font-size: 1.2rem;
  margin: 20px;
  line-height: 1.6;
  text-align: left;
  max-width: 90%;
  font-weight: 500;
}

.our_service_view_all {
  position: absolute;
  right: 0;
  top: 20px;
  background: #fff;
  color: #3A98D0;
  padding: 8px 18px;
  border-radius: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
      z-index: 999;
}

.our_service_view_all:hover {
  background: #3A98D0;
  color: #fff;
}

/* Cards */
.our_service_card {
  background-image: url('../images/our-service-card.png');
  border-radius: 16px;
  padding: 0px 10px;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: scale(0.9);
  margin: 15px 0px;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Zoom active card */
.slick-current .our_service_card {
  transform: scale(5);
  opacity: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.our_service_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transform: translateY(-15px);
    border-radius: 18px;
}

.our_service_card h3 {
  color: #fff;
  margin: -7px  4px 5px;
  font-size: 1rem;
}

.our_service_card p {
  color: #d4d7e2;
  font-size: 0.85rem;
  min-height: 70px;
}

.our_service_btn {
  margin-top: 5px;
  margin-bottom: 15px;
  background: #fff;
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}

.our_service_btn:hover {
  background: #00b3ff;
  color: #fff;
}

.our_service_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Why Choose Us
=================================== */
.why-choose {
  padding: 80px 0;
  text-align: center;
}

.why-choose .main-section-heading , .why-choose-sub-info {
  margin-left: 20px;
}

.why-choose .section-bg-text{
  width: auto;
}
.why-choose  .section-title{
  font-size: 2rem;
}

.why-choose-sub-info {
  color: #898989;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 500;
}
.why-choose-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  text-align: left;
}

.why-choose-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  width: calc(20% - 20px);
  border: 1px solid #ADE0FF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;  
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 5px;
}

.why-choose-card h3 {
  font-size: 1rem;
  color: #3A98D0;
  margin-bottom: 15px;
}

.why-choose-card p {
  font-size: 0.95rem;
  color: #898989;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1300px) {
  .why-choose-card {
    width: calc(30% - 20px);
  }
}

@media (max-width: 992px) {
  .why-choose-card {
    width: calc(45% - 20px);
  }
}

@media (max-width: 600px) {
  .why-choose-card {
    width: 100%;
  }
}


.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.choose-item {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 12px;
}

.choose-item h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* ===================================
   Work Process
=================================== */
.process {
  background: #020E37;
  padding: 80px 0;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.step {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 25px;
}

.step span {
  display: block;
  font-weight: 600;
  color: var(--secondary-color);
}

.contact_us_section {
  padding: 60px 20px;
}

.contact_us_container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 90%;
  margin: auto;
}

/* Left Card */
.contact_us_card {
  flex: 1 1 300px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.contact_us_card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.contact_us_card p {
  color: #d6d9e7;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact_us_item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact_us_icon {
  background: #fff;
  color: #0b163b;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 1.1rem;
}

.contact_us_item h4 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.contact_us_item p {
  margin: 5px 0 0;
  color: #d4d7e2;
  font-size: 0.9rem;
}

/* Social Icons */
.contact_us_social h4 {
  margin: 30px 0 15px;
  font-size: 1rem;
  font-weight: 500;
}

.contact_us_icon img {
  display: inline-block;
  color: #0b163b;
  background: #fff;
  width: 25px;
  height: 25px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}


/* Right Form */
.contact_us_form_area {
  flex: 2 1 500px;
  background: #fff;
  border-radius: 16px;
  padding: 15px 30px;
}

.contact_us_form_area p {
  color: #898989;
  font-size:1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
  margin-top: 10px;
}

/* Form Layout */
.contact_us_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact_us_row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact_us_input_box {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact_us_input_box label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000000CC;
}

.contact_us_input_box input,
.contact_us_input_box select,
.contact_us_textarea_box textarea {
    background: #F9F9F9;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #000000;
    resize: none;
    height: 60px;
}

.contact_us_textarea_box textarea {
  height: 150px;
}

.contact_us_input_box input::placeholder,
.contact_us_input_box select::placeholder,
.contact_us_textarea_box textarea::placeholder {
  font-family: 'Inter';
}


.contact_us_input_box input:focus,
.contact_us_input_box select:focus,
.contact_us_textarea_box textarea:focus {
  border: 1px solid #00b3ff;
  background: #fff;
}

.contact_us_textarea_box {
  display: flex;
  flex-direction: column;
}

.contact_us_textarea_box label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

/* Button */
.contact_us_btn {
  background: #2889CF;
  color: #fff;
  padding: 20px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  font-family: 'Inter';
  font-size: 1rem;
  margin-top: 10px;
}

.contact_us_btn:hover {
  background: #fff;
  border: 1px solid #2889CF;
  color: #2889CF;
}

/* Responsive */
@media (max-width: 992px) {
  .contact_us_container {
    flex-direction: column-reverse;
  }
}


/* ===================================
   Responsive
=================================== */
@media (max-width: 992px) {
  

  .menu-toggle {
    display: block;
  }

  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 48px;
  }

}

/* Section Wrapper */
.faq_bcs_section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.faq_bcs_container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 95%;
  width: 100%;
  margin: auto;
}

.faq_bcs_heading_con {
   max-width: 1250px;
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
}

.faq_bcs_con {
  background-color: #F8F8F8;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 20px;
}

/* Left: Accordion */
.faq_bcs_left {
  flex: 2 1 600px;
}


.faq_bcs_heading_con p {
  font-size: 1.1rem;
  color: #898989;
  margin-bottom: 30px;
  margin-top: 10px;
  font-weight: 500;
}

/* Accordion */
.faq_bcs_accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq_bcs_item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.3s ease;
      padding: 10px 30px;
}

.faq_bcs_item.active {
  background: #3A98D0;
  color: #fff;
}

.faq_bcs_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  border-bottom: 1px solid #fff;
}

.faq_bcs_question h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #686868;
}

.faq_bcs_item.active h3 {
  color: #fff;
}

.faq_bcs_icon {
  font-size: 1.3rem;
  font-weight: bold;
}

.faq_bcs_answer {
  display: none;
  padding: 10px 0px 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #e8f0ff;
}

/* When inactive */
.faq_bcs_item:not(.active) .faq_bcs_answer {
  color: #555;
}

/* Right: Card */
.faq_bcs_right_card {
  flex: 1 1 280px;
  background: linear-gradient(180deg, #00114D 0%, #000927 100%);
  color: #fff;
  border-radius: 16px;
  padding: 60px 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.faq_bcs_card_icon {
  margin-bottom: 20px;
}

.faq_bcs_right_card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.faq_bcs_right_card p {
  font-size: 0.9rem;
  color: #d5d8ef;
  margin-bottom: 20px;
  line-height: 1.5;
}

.faq_bcs_btn {
  background: #fff;
  color: #3A98D0;
  padding: 10px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #001149
}

.faq_bcs_btn:hover {
  background: #3A98D0;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .faq_bcs_container {
    flex-direction: column;
  }

  .faq_bcs_right_card {
    align-items: center;
    text-align: center;
  }
}

/* Testimonals */
.testimonal_bcs_section {
  padding: 30px 20px;
  display: flex;
  justify-content: center;
}

.testimonal_bcs_container {
  width: 100%;
  max-width: 1200px;
}

/* Header */
.testimonal_bcs_header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
}

.testimonal_bcs_header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin-top: 5px;
  border-radius: 2px;
}

.testimonal_bcs_header p {
    color: #898989;
    margin: 10px 30px;
    font-weight: 500;
}

/* Slider Card */
.testimonal_bcs_card {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 25px;
  margin: 10px;
  transition: transform 0.3s ease;
  text-align: left;
}

.testimonal_bcs_card:hover {
  transform: translateY(-5px);
}

.testimonal_bcs_stars {
  color: #3A98D0;
  margin-bottom: 15px;
}

.testimonal_bcs_stars i {
  margin-right: 3px;
  font-size: 1.3rem;
}

.testimonal_bcs_text {
  font-size: 1rem;
  color: #898989;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonal_bcs_text a {
  color: #3A98D0;
  text-decoration: none;
  font-weight: 500;
}

/* Profile */
.testimonal_bcs_profile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px;
  border-radius: 8px;
}

.profile_con {
  width: 45px;
  height: 45px;
  background-color: #F8F8F8;
  border-radius: 6px;
  display: flex;
}

.testimonal_bcs_profile img {
  margin: auto;
  border-radius: 6px;
  object-fit: cover;
}

.testimonal_bcs_profile h4 {
  font-size: 1rem;
  margin: 0;
  color: #000;
}

.testimonal_bcs_profile span {
  font-size: 0.85rem;
  color: #9A9A9A;
}

/* Slick Custom Dots */
.testimonal_bcs_slider  .slick-dots {
  bottom: -35px;
}

.testimonal_bcs_slider  .slick-dots li button:before {
  font-size: 10px;
  color: #3A98D0;
  width: 50px;
  height: 10px;
}

.testimonal_bcs_slider  .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #3A98D0;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonal_bcs_card {
    margin: 0 10px;
  }
}


/* Timeline Section Wrapper */
.timeline_bcs_wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Layout */
.timeline_bcs_container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDE STEPS */
.timeline_bcs_steps {
  position: relative;
  flex: 1;
  max-width: 250px;
  border: 1px solid #D2D2D2;
    border-radius: 16px;
    padding: 16px;
}

.timeline_bcs_step {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.timeline_bcs_step:hover {
  background: #f0f7ff;
}

.timeline_bcs_step.active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
  box-shadow: 0 3px 8px rgba(0, 123, 255, 0.2);
}

.timeline_bcs_icon {
  width: 36px;
  height: 36px;
  background: #e7e7e7;
  color: #555;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 16px;
}

.timeline_bcs_step.active .timeline_bcs_icon {
  background: #fff;
  color: #007bff;
}

.timeline_bcs_text h4 {
  font-size: 14px;
  font-weight: 600;
}
.timeline_bcs_text p {
  font-size: 13px;
  color: #666;
}
.timeline_bcs_step.active .timeline_bcs_text p,
.timeline_bcs_step.active .timeline_bcs_text h4 {
  color: #fff;
}

/* Timeline Connector Line */
.timeline_bcs_line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ddd;
  z-index: -1;
}

/* RIGHT SIDE CONTENT */
.timeline_bcs_content {
  flex: 2;
  background: #f8fbff;
  border-radius: 10px;
  padding: 25px 30px;
  border-left: 4px solid #007bff;
  min-height: 300px;
}

.timeline_bcs_tab {
  display: none;
}
.timeline_bcs_tab.active {
  display: block;
}

.timeline_bcs_tab h3 {
  color: #007bff;
  margin-bottom: 10px;
  font-size: 18px;
}
.timeline_bcs_tab p {
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
.timeline_bcs_tab ul {
  list-style: none;
}
.timeline_bcs_tab ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.timeline_bcs_tab ul li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #007bff;
}

/* Responsive */
@media (max-width: 992px) {
  .timeline_bcs_container {
    flex-direction: column;
  }
  .timeline_bcs_steps {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;    
  }
  .timeline_bcs_step {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }
  .timeline_bcs_line {
    display: none;
  }
}

@media (max-width: 600px) {
  .timeline_bcs_step {
    flex: 1 1 100%;
  }
}

@media (max-width: 632px) {
  .hero .build-text {
    display: block;
  }
}



/* STICKY WRAPPER BEHAVIOR */
.timeline_bcs_wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Container wrapper for scroll effect */
.timeline_bcs_scroll_container {
  position: relative;
  height: 300vh; /* total scroll area (adjust as needed) */
}

.timeline_bcs_sticky_area {
  position: sticky;
  top: 80px; /* distance from top before it sticks */
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      width: 95%;
    margin: auto;
}

/* Slight zoom effect for clarity */
.timeline_bcs_step.active {
  transform: scale(1.03);
}

/* Smooth transition for steps */
.timeline_bcs_step,
.timeline_bcs_line {
  transition: all 0.4s ease;
}


@media (max-width: 999px) { 
  .our_service_view_all {
    position: unset;
  }
}

/* About_US page */

/* === Ribbon Wrapper === */
.ribbon_bcs_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 168px; /* Adjust ribbon height area */
  background: #fff;
}

/* === Common Ribbon Styles === */
.ribbon_bcs {
  position: absolute;
  width: 120%;
  left: -10%;
  transform-origin: center;
  overflow: hidden;
  white-space: nowrap;
}

/* Top Blue Ribbon */
.ribbon_bcs_blue {
  background: #3498db;
  color: #fff;
  transform: rotate(3deg);
  top: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Bottom Dark Ribbon */
.ribbon_bcs_dark {
  background: #000;
  color: #fff;
  transform: rotate(
359deg);
  top: 33px;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


/* === Scrolling Text Animation === */
.ribbon_bcs_text {
  display: inline-block;
  white-space: nowrap;
  animation: ribbon_bcs_scroll 20s linear infinite;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-left: 100%;
}

@keyframes ribbon_bcs_scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.ribbon_bcs_blue .ribbon_bcs_text {
    animation-direction: reverse;
}


/* === Responsive === */
@media (max-width: 768px) {
  .ribbon_bcs_text {
    font-size: 14px;
  }

  .ribbon_bcs_blue,
  .ribbon_bcs_dark {
    height: 35px;
  }
}


/* ============================
   Sustainable Growth Section
============================ */
.growth_bcs_section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.growth_bcs_container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.growth_bcs_section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2585ca;
  line-height: 1.3;
  margin-bottom: 15px;
}

.growth_bcs_subtext {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Cards Container */
.growth_bcs_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Each Card */
.growth_bcs_card {
  background: #f3f3f3;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

.growth_bcs_section h2 span {
  display: block;
}

.growth_bcs_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Card Image */
.growth_bcs_card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  height: 220px;
  object-fit: cover;
}

/* Card Title */
.growth_bcs_card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2585ca;
  margin-bottom: 10px;
}

/* Card Text */
.growth_bcs_card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .growth_bcs_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .growth_bcs_cards {
    grid-template-columns: 1fr;
  }

  .growth_bcs_section h2 {
    font-size: 26px;
  }

  .growth_bcs_subtext {
    font-size: 14px;
  }
}

/* ==========================================
   Unlock Business Potential Section
========================================== */
.potential_bcs_section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.potential_bcs_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Image */
.potential_bcs_image {
  flex: 1 1 45%;
  text-align: center;
}

.potential_bcs_image img {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Right Content */
.potential_bcs_content {
  flex: 1 1 50%;
}

.potential_bcs_content h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.potential_bcs_content span {
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
  font-weight: 600;
}

.potential_bcs_highlight {
  color: #2585ca;
  font-weight: 700;
      font-size: 2rem !important;
    
}

.potential_bcs_subtext {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.potential_bcs_detail {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  /* background: #f9f9f9; */
  padding: 15px 20px;
  border-radius: 10px;
  position: relative;
}

.potential_bcs_detail::before{
  content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #007FBA4D;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .potential_bcs_container {
    flex-direction: column;
    text-align: center;
  }

  .potential_bcs_image img {
    max-width: 100%;
  }

  .potential_bcs_content {
    flex: 1 1 100%;
  }

  .potential_bcs_content h2 {
    font-size: 28px;
  }

  .potential_bcs_subtext,
  .potential_bcs_detail {
    font-size: 14px;
  }
}


/* ===================================
   Beyond Development Section
=================================== */
.beyond-dev-desc span {
  display: block;
}

.beyond-dev-desc {
  color: #898989;
  font-size: 16px;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 40px;
  font-weight: 500;
}

/* Stats */
.beyond-dev-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}

.beyond-dev-stat h3 {
  font-size: 22px;
  color: #3A98D0;
  font-weight: 700;
}

.beyond-dev-stat p {
  font-size: 14px;
  color: #838383;
  margin-top: 4px;
}

.beyond-dev-divider {
  width: 1px;
  height: 30px;
  background: #838383;
}

/* Cards */
.beyond-dev-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.beyond-card {
  background: #000000;
  color: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  /* max-width: 320px; */
  flex: 1;
  min-width: 260px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beyond-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.beyond-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.beyond-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #FFFFFFCC;
}

/* Responsive */
@media (max-width: 992px) {
  .beyond-dev-title {
    font-size: 30px;
  }
  .beyond-dev-desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .beyond-dev-stats {
    flex-direction: column;
    gap: 12px;
  }
  .beyond-dev-divider {
    display: none;
  }
  .beyond-card {
    max-width: 100%;
  }
}

.beyond-dev-content .section-header {
  justify-content: center;
}


/* ===================================
   Feature Showcase Section
=================================== */
.features-showcase {
  padding: 60px 20px;
  background-color: #fff;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 auto;
  margin-top: 40px ;
}

.feature-item {
  background: #fff;
  border: 1px solid #F2F2F2;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: left;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 18px;
}

.feature-text {
  color: #2B2B2B;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 1024px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-item {
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 15px;
  }
}


/* ===================================
   Process Steps Section
=================================== */
.process-steps-section {
  background-color: #02103b;
  border-radius: 14px;
  padding: 50px 30px;
  margin: 30px auto;
  color: #fff;
}

.process-steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease;
}

.process-step-item:hover {
  transform: translateX(8px);
}

.process-step-number {
  background-color: #fff;
  color: #3A98D0;
  font-size: 2.1rem;
  font-weight: 700;
  border-radius: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "Kulim Park", sans-serif;
}

.process-step-content {
  flex: 1;
}

.process-step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

.process-step-text {
  color: #cfd7e2;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 768px) {
  .process-steps-section {
    padding: 40px 20px;
  }

  .process-step-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step-number {
    width: 34px;
    height: 34px;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .process-step-title {
    font-size: 16px;
  }

  .process-step-text {
    font-size: 14px;
  }
}

/* ===================================
   UI/UX Showcase Section
=================================== */
.uiux-showcase-section {
  padding: 0px 20px 60px;
  background-color: #fff;
}

.uiux-showcase-container {
  margin: 0 auto;
  text-align: left;
  margin-top: 30px;
}

.uiux-showcase-description {
  border: 1px solid #3A98D0;
  border-radius: 12px;
  padding: 18px 28px;
  color: #5D5D5D;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}

.uiux-showcase-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.uiux-image-box {
  flex: 1 1 30%;
  max-width: 30%;
}

.uiux-image-box img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.uiux-image-box img:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 992px) {
  .uiux-image-box {
    max-width: 300px;
  }
  .section-bg-text {
    left: 0;
    right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .uiux-showcase-description {
    font-size: 15px;
    padding: 14px 20px;
  }

  .uiux-showcase-images {
    flex-direction: column;
    gap: 16px;
  }

  .uiux-image-box {
    max-width: 100%;
  }
}

/* @media (max-width: 600px) {
.section-bg-text {
  font-size: 5rem;
}

} */



/* ===================================
   Service Tabs Section
=================================== */
.service-tabs-section {
  background: #fff;
  padding: 20px 15px;
  overflow-x: auto;
}

.service-tabs-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.service-tabs-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.service-tab-item {
  border: none;
  outline: none;
  background: #F0F0F0;
  color: #505050;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.service-tab-item:hover {
  background: #e2e2e2;
}

.service-tab-item.active {
  background: #3A98D0;
  color: #fff;
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 768px) {
  .service-tab-item {
    font-size: 13px;
    padding: 7px 16px;
  }
}

@media (max-width: 480px) {
  .service-tabs-container {
    gap: 8px;
  }

  .service-tab-item {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* WRAPPER */
.blog_sec_wrapper {
  padding: 40px 20px;
}

/* GRID CONTAINER */
.blog_sec_container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-tabs-con .service-tab-item {
        border: 1px solid #D8D8D8;
        background-color: #fff;
}
.blog-tabs-con .service-tab-item.active {
  background-color: #3A98D0;
}
/* CARD */
.blog_sec_card {
  border: 1px solid #E2E2E2;
  border-radius: 20px;
  padding: 24px;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog_sec_card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* CATEGORY */
.blog_sec_category {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  color: #000000;
}

/* TITLE */
.blog_sec_title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #3A98D0;
}

/* DESCRIPTION */
.blog_sec_desc {
  font-size: 1rem;
  color: #898989;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* FOOTER */
.blog_sec_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog_sec_date {
  font-size: 0.9rem;
    color: #B0B0B0;
    font-weight: 400;
}

.blog_sec_link {
    font-size: 1.1rem;
    font-weight: 500;
    color: #003D63;
    text-decoration: none;
}

.blog_sec_link span {
  color: #3A98D0;
}

/* .blog_sec_link:hover {
  text-decoration: underline;
} */

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog_sec_container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog_sec_container {
    grid-template-columns: 1fr;
  }

  .blog_sec_card {
    padding: 20px;
  }
}

/* INFO SECTION WRAPPER */
.blog_sec_info_wrapper {
  padding: 10px 20px;
  background-color: #ffffff;
}

.blog_sec_info_container {
  margin: 0 auto;
}

/* TOP HIGHLIGHTS */
.blog_sec_highlights {
      display: grid;
    grid-template-columns: repeat(3, 280px);
    gap: 10%;
    background-color: #f7f7f7;
    padding: 50px 30px;
    border-radius: 20px;
    margin-bottom: 50px;
    justify-content: center;
}

.blog_sec_highlight_item {
  text-align: left;
}

.blog_sec_highlight_title {
  font-size: 1.2rem;  
    font-weight: 600;
    margin-bottom: 8px;
    color: #4F4F4F;
}

.blog_sec_highlight_desc {
  font-size: 0.9rem;
    color: #898989;
    line-height: 1.6;
}

/* LEARN SECTION */
.blog_sec_learn_section {
  max-width: 700px;
}

.blog_sec_learn_title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1D1D1D;
}

/* LIST */
.blog_sec_learn_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog_sec_learn_item {
      display: flex;
    font-size: 1rem;
    color: #898989;
    font-weight: 500;
    gap: 8px;
    align-items: center;
    line-height: 15px;
    margin-bottom: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog_sec_highlights {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .blog_sec_learn_title {
    font-size: 22px;
  }

  .blog_sec_highlights {
    padding: 24px;
  }
}

/* CTA SECTION */
.blog_sec_cta_wrapper {
      position: relative;
    padding: 35px 20px;
    background-color: #0b0b0b;
    overflow: hidden;
    background-image: url(../images/pattern.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-bottom: 30px;
}

/* HEXAGON STYLE BACKGROUND */
/* .blog_sec_cta_wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, #1a1a1a 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, #1a1a1a 0%, transparent 60%);
  opacity: 0.9;
} */

/* DARK OVERLAY */
.blog_sec_cta_overlay {
  position: relative;
  z-index: 2;
}

/* CONTENT */
.blog_sec_cta_content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.blog_sec_cta_title {
  font-size: 3.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.blog_sec_cta_desc {
  font-size: 1.3rem;
  color: #cfcfcf;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* BUTTON */
.blog_sec_cta_btn {
  display: inline-block;
  padding: 12px 26px;
  background-color: #ffffff;
  color: #0b0b0b;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog_sec_cta_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog_sec_cta_title {
    font-size: 28px;
  }

  .blog_sec_cta_desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog_sec_cta_title {
    font-size: 24px;
  }

  .blog_sec_cta_wrapper {
    padding: 70px 16px;
  }
}

/* .blog-article-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 30px);
} */

.blog_uiux_wrapper {
  margin: 0 auto;
  padding: 0px 60px 20px;
}

/* COMMON SECTION */
.blog_uiux_section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

/* CARD ONLY FOR FIRST SECTION */
.blog_uiux_card {
  border: 1px solid #DADADA;
  border-radius: 30px;
  padding: 24px;
}

/* IMAGE */
.blog_uiux_image img {
  border-radius: 12px;
  display: block;
}

/* CONTENT */
.blog_uiux_content {
  flex: 1;
}

.blog_uiux_heading {
  font-size: 2rem;
  font-weight: 600;
  color: #3A98D0;
  margin-bottom: 12px;
}


.blog_uiux_text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #898989;
  font-weight: 500;
}

/* KEY INSIGHT */
.blog_uiux_key {
  background: #F5F5F5;
  padding: 14px 16px;
  border-radius: 20px;
  border-left: 5px solid #3A98D0;
}

.blog_uiux_key_label {
  font-size: 0.9rem;
    font-weight: 600;
    color: #3A98D0;
    display: block;
    margin-bottom: 6px;
}

/* REASON SECTION */
.blog_uiux_reason {
      max-width: 85%;
    margin-bottom: 60px;
    padding-left: 60px;
}

.blog_uiux_reason_title {
  font-size: 1.7rem;
  font-weight: 600;
  color: #3A98D0;
  margin-bottom: 16px;
}

.blog_uiux_reason_content {
  position: relative;
  padding-left: 24px; /* space for the line */
}

.blog_uiux_reason_content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;              /* match image thickness */
  height: 100%;
  background-color: #007FBA4D; /* image-like grey */
  border-radius: 4px;
}


.blog_uiux_reason_content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #898989;
  /* text-transform: capitalize; */
}

/* LIST */
.blog_uiux_list {
  padding-left: 18px;
}

.blog_uiux_list li {
  font-size: 1.3rem;
    line-height: 1.8;
    color: #898989;
    list-style: disc;
    font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog_uiux_section {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog_uiux_image img {
    width: 100%;
  }
}

.blog_uiux_conversion {
  /* max-width: 1100px; */
  margin: 0 auto;
  padding: 0px 60px 20px;
  font-family: Inter, Arial, sans-serif;
}

/* TITLE */
.blog_uiux_conversion_title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3A98D0;
  margin-bottom: 24px;
}

/* STEPS */
.blog_uiux_steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.blog_uiux_step {
  background: #F6F6F6;
  padding: 16px;
  border-radius: 10px;
}

.blog_uiux_step_no {
  font-size: 11px;
  font-weight: 600;
  color: #000000;
  display: block;
  margin-bottom: 6px;
}

.blog_uiux_step h4 {
  font-size: 14px;
  font-weight: 600;
  color: #3A98D0;
  margin-bottom: 4px;
}

.blog_uiux_step p {
  font-size: 13px;
  color: #898989;
  line-height: 1.5;
}

/* TAKEAWAYS CARD */
.blog_uiux_takeaways {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
}

/* LEFT */
.blog_uiux_takeaways_left {
  flex: 1;
}

.blog_uiux_takeaways_left h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3A98D0;
  margin-bottom: 12px;
}

.blog_uiux_takeaways_left ul {
  padding-left: 50px;
}

.blog_uiux_takeaways_left li {
  font-size: 1.2rem;
  color: #898989;
  line-height: 1.7;
  list-style: disc;
}

/* PATH */
.blog_uiux_path {
  width: 200px;
}

/* SUCCESS */
.blog_uiux_success {
  text-align: center;
}

.blog_uiux_success_text {
  font-size: 12px;
  font-weight: 600;
  color: #facc15;
  display: block;
  margin-bottom: 6px;
}

.blog_uiux_success_icon {
  font-size: 36px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog_uiux_steps {
    grid-template-columns: 1fr 1fr;
  }

  .blog_uiux_takeaways {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog_uiux_path {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .blog_uiux_steps {
    grid-template-columns: 1fr;
  }
}
.blog_uiux_related {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 20px 20px;
  font-family: Inter, Arial, sans-serif;
}

/* HEADER */
.blog_uiux_related_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.blog_uiux_related_title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3A98D0;
}

.blog_uiux_view_all {
  font-size: 1.1rem;
  color: #3A98D0;
  text-decoration: none;
}

/* GRID */
.blog_uiux_related_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.blog_uiux_related_card {
  background: #F6F6F6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

/* IMAGE */
.blog_uiux_related_img {
  /* background: #bfe6ff;
  padding: 20px; */
}

.blog_uiux_related_img img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* CONTENT */
.blog_uiux_related_content {
  padding: 25px 35px;
}

.blog_uiux_related_tag {
  font-size: 1.2rem;
  color: #003D63;
  display: block;
  margin-bottom: 6px;
}

.blog_uiux_related_heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.blog_uiux_related_desc {
  font-size: 1rem;
    line-height: 1.6;
    color: #898989;
    margin-bottom: 16px;
    font-weight: 400;
}

/* FOOTER */
.blog_uiux_related_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog_uiux_brand {
  font-size: 12px;
  color: #9ca3af;
}

.blog_uiux_project_link {
  font-size: 1rem;
    font-weight: 700;
    color: #003D63;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog_uiux_related_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .blog_uiux_related_grid {
    grid-template-columns: 1fr;
  }
}

body {
  margin: 0;
  background: #ffffff;
  font-family: Inter, Arial, sans-serif;
  color: #374151;
}

.privacy_policy_wrapper {
  
}

/* TITLE */
.privacy_policy_title {
  font-size: 2rem;
  font-weight: 700;
  color: #3A98D0;
  margin-bottom: 16px;
}

/* INTRO */
.privacy_policy_intro {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #898989;
  margin-bottom: 32px;
  font-weight: 500;
}
.privacy_policy_intro span{
  font-weight: 700;
  font-size: 1.2rem;
}

/* HEADINGS */
.privacy_policy_heading {
  font-size: 2rem;
  font-weight: 600;
  color: #3A98D0;
  margin-top: 15px;
  /* margin-bottom: 12px; */
}

/* TEXT */
.privacy_policy_text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #4E4E4E;
}
.privacy_policy_contact span  {
  display: block;
  font-size: 1.2rem;
    line-height: 1.7;
    color: #4E4E4E;
}
.privacy_policy_contact span a {
  font-size: 1.2rem;
    line-height: 1.7;

}
.privacy_policy_text.strong {
  font-weight: 600;
}

/* LISTS */
.privacy_policy_list {
  padding-left: 18px;
  margin-bottom: 16px;
}

.privacy_policy_list li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #898989;
  list-style: disc;
  margin-bottom: 6px;
}

/* NOTE */
.privacy_policy_note {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

/* CONTACT */
.privacy_policy_contact a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .privacy_policy_title {
    font-size: 24px;
  }
  .blog_sec_cta_wrapper {
    background-size: cover;
  }
}

.privacy_policy_wrapper-main-section {
  margin: 30px 20px;
  padding: 30px 60px;
  border: 1px solid #D6D6D6;
  border-radius: 10px;
}

.privacy_policy_text strong {
  font-size: 1.2rem;
}

.top_border {
  border-top: 2px solid #E2E2E2;
}

.blog_uiux_key p {
  color: #898989;
  font-weight: 500;
}

.blog_uiux_process {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 60px 20px; */
  font-family: Inter, Arial, sans-serif;
}

.blog_uiux_process_layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.blog_uiux_step_content {
    padding-top: 5px;
}

/* LEFT COLUMN */
.blog_uiux_process_left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* STEP CARD */
.blog_uiux_step_card {
  display: flex;
  gap: 18px;
  background: #f9fafb;
  padding: 20px;
  border-radius: 14px;
  position: relative;
      padding-bottom: 0;
    height: 150px;
}

/* LEFT SIDE (CIRCLE + LINE) */
.blog_uiux_step_left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* NUMBER CIRCLE */
.blog_uiux_circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 1.3rem;
}

/* LINE INSIDE CARD */
.blog_uiux_line {
  width: 2px;
  flex: 1;
  background: #d1d5db;
  margin-top: 6px;
  border-radius: 2px;
}

/* REMOVE LINE FOR LAST */
.blog_uiux_last .blog_uiux_line {
  display: none;
}

/* CONTENT */
.blog_uiux_step_content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
}

.blog_uiux_step_content p {
      font-size: 1.1rem;
    line-height: 1.6;
    color: #676767;
    font-weight: 500;
}

/* COLORS */
.blog_uiux_blue { background: #2889CF; }
.blog_uiux_yellow { background: #fbbf24; }
.blog_uiux_darkblue { background: #1e3a8a; }
.blog_uiux_orange { background: #fb923c; }

/* RIGHT CARD */
.blog_uiux_insight_card {
  border: 1px solid #DADADA;
  border-radius: 30px;
  padding: 24px;
  text-align: center;
}

.blog_uiux_insight_icon img {
  width: 36px;
  margin-bottom: 10px;
}

.blog_uiux_insight_card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333333;
}

.blog_uiux_insight_list_card {
    border: 1px solid #CFCFCF;
    border-radius: 20px;
    padding: 20px 15px;
    margin-top: 25px;
}

.blog_uiux_insight_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog_uiux_insight_list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #003D63;
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px; /* space for icon */
}

.blog_uiux_insight_list li::before {
  content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url(../images/tick-decagram.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .blog_uiux_process_layout {
    grid-template-columns: 1fr;
  }
}

.testimonal_bcs_card_inner_con {
  display: flex;
  justify-content: space-between;
}

.testimonal_bcs_card_inner_con  p{
  color: #898989;
}

@media (max-width: 992px) {
  .contact_us_card {
    flex: 1 1 100%;
    padding: 30px 24px;
  }
}

@media (max-width: 576px) {
  .contact_us_card {
    padding: 24px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
}