* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
/*=========================
        STICKY HEADER
==========================*/
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all .4s ease;
  background: transparent;
}
.main-header .navbar {
  padding: 7px 0;
  transition: .4s;
}
.logo {
  height: 60px;
  transition: .4s;
}
/* Menu */
.navbar-nav .nav-link {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 18px !important;
  transition: .3s;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
  color: #26A9E0;
}
/* Sticky Header */
.main-header.sticky {
  background: #07162B;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
  animation: headerSlide .5s ease;
}
.main-header.sticky .navbar {
  padding: 12px 0;
}
.main-header.sticky .logo {
  height: 50px;
}
.main-header.sticky .nav-link {
  color: #fff;
}
/* Animation */
@keyframes headerSlide {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Mobile */
@media(max-width:1199px) {
  .main-header {
    background: #07162B;
  }
  .navbar-collapse {
    background: #07162B;
    padding: 20px;
    margin-top: 15px;
    border-radius: 12px;
  }
  .navbar-nav {
    align-items: flex-start !important;
  }
  .navbar-nav .nav-link {
    padding: 12px 0 !important;
  }
}
.main-header.sticky {
  background: rgba(7, 22, 43, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .20);
}
.navbar-toggler {
    color: rgb(255 255 255 / 65%);
}
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 25, 55, .90), rgba(5, 25, 55, .55));
}
.hero-content {
  color: #fff;
}
.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: #26A9E0;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 12px;
}
.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero-content h1 span {
  color: #26A9E0;
}
.hero-content p {
  font-size: 15px;
  line-height: 24px;
  /* margin-bottom: 35px; */
  color: #E4EEF8;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary-custom {
  padding: 16px 40px;
  background: #26A9E0;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
}
.btn-outline-custom {
  padding: 16px 40px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
}
.hero-image {
  text-align: center;
  position: relative;
}
.machine {
  max-width: 420px;
  width: 100%;
  animation: float 4s ease-in-out infinite;
}
.floating-card {
  position: absolute;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}
.card1 {
  top: 15%;
  left: 0;
}
.card2 {
  top: 45%;
  right: 0;
}
.card3 {
  bottom: 10%;
  left: 20%;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media(max-width:991px) {
  .hero-content {
    text-align: center;
  }
  .hero-content h1 {
    font-size: 30px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    margin-top: 4px;
  }
  .machine {
    max-width: 280px;
  }
  .floating-card {
    display: none;
  }
}
.py-120 {
  padding: 80px 0;
}
.about-section {
  background: #F8FBFF;
  position: relative;
}
.section-title .subtitle {
  display: inline-block;
  color: #26A9E0;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 6px;
  font-size: 13px;
}
.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0D2344;
  line-height: 41px;
  margin-bottom: 16px;
}
.about-section p {
  font-size: 16px;
  color: #292929;
  line-height: 26px;
}
.about-image {
  position: relative;
  padding-right: 20px;
}
.about-image img {
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .12);
}
.experience-box {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 220px;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 91, 172, .18);
}
.experience-box h2 {
  font-size: 50px;
  color: #005BAC;
  font-weight: 700;
}
.experience-box span {
  color: #666;
  font-weight: 500;
}
.shape-circle {
  position: absolute;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  border-radius: 50%;
  top: -30px;
  left: -40px;
  z-index: -1;
}
.about-features {
  margin-top: 23px;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  font-weight: 600;
  color: #333;
}
.feature-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EAF6FF;
  color: #005BAC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
.counter-box {
  background: #fff;
  border-radius: 18px;
  text-align: center;
  padding: 30px;
  transition: .4s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}
.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 91, 172, .18);
}
.counter-box h3 {
  font-size: 42px;
  color: #005BAC;
  font-weight: 700;
}
.counter-box p {
  margin: 0;
  color: #666;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  color: #fff;
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
}
.about-btn:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 91, 172, .35);
}
@media(max-width:991px) {
  .about-image {
    padding-right: 0;
    margin-bottom: 60px;
  }
  .experience-box {
    position: relative;
    margin-top: -60px;
    right: auto;
    left: 30px;
  }
  .section-title h2 {
          font-size: 26px;
        line-height: 29px;
  }
	.services-section p {
    color: rgba(255, 255, 255, .75);
    line-height: 23px;
    font-size: 16px;
}
	.solutions-section .subtitle, .solutions-section h2, .solutions-section p {
    color: #fff;
}
}
/*==============================
        SERVICES SECTION
===============================*/
.services-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #07162B 0%, #0D2344 50%, #06101F 100%);
  overflow: hidden;
}
/* Background Glow */
.services-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -200px;
  top: -150px;
  background: #00AEEF;
  opacity: .08;
  filter: blur(140px);
  border-radius: 50%;
}
.services-section::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  right: -180px;
  bottom: -180px;
  background: #005BAC;
  opacity: .10;
  filter: blur(150px);
  border-radius: 50%;
}
/* Heading */
.services-section .section-title {
  position: relative;
  z-index: 2;
}
.services-section .subtitle {
  display: inline-block;
  padding: 8px 22px;
  background: rgba(38, 169, 224, .12);
  color: #26A9E0;
  border: 1px solid rgba(38, 169, 224, .25);
  border-radius: 50px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 18px;
}
.services-section h2 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}
.services-section p {
  color: rgba(255, 255, 255, .75);
  line-height: 28px;
	font-size: 16px;
}
/* Service Card */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 24px 22px 20px;
  height: 100%;
  transition: .45s;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: #26A9E0;
  transition: .4s;
}
.service-card:hover {
  transform: translateY(-12px);
  border-color: #26A9E0;
  box-shadow: 0 20px 45px rgba(0, 174, 239, .18);
}
.service-card:hover::before {
  height: 100%;
}
/* Icon */
.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  color: #fff;
  margin-bottom: 25px;
  transition: .4s;
}
.service-card:hover .service-icon {
  transform: rotateY(180deg);
}
/* Text */
.service-card h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  color: #fff;
  margin-bottom: 13px;
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
}
/* Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}
.service-btn:hover {
  color: #fff;
  transform: translateX(8px);
}
.service-btn i {
  transition: .3s;
}
.service-btn:hover i {
  transform: translateX(6px);
}
/* Responsive */
@media(max-width:991px) {
  .services-section h2 {
    font-size: 38px;
  }
}
@media(max-width:767px) {
  .services-section {
    padding: 80px 0;
  }
  .services-section h2 {
    font-size: 30px;
  }
  .service-card {
    padding: 30px 25px;
  }
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
/*=========================
     PRODUCTS SECTION
==========================*/
.products-section {
  background: #f6f9fc;
}
.products-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  transition: .4s;
  border: 1px solid #edf2f7;
  height: 100%;
}
.product-card img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  padding: 25px;
  transition: .5s;
  background: #fff;
}
.product-content {
  padding: 14px 12px;
  border-top: 1px solid #eee;
}
.product-content span {
  display: inline-block;
  color: #0099e5;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}
.product-content h5 {
  color: #0D2344;
  font-size: 17px;
  font-weight: 700;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}
.product-card:hover img {
  transform: scale(1.08);
}
.subtitle {
  color: #0099e5;
  font-weight: 600;
  letter-spacing: 2px;
}
@media(max-width:768px) {
  .section-title {
    font-size: 32px;
  }
  .product-card img {
    height: 180px;
  }
}
/*=========================
      SOLUTIONS SECTION
=========================*/
.solutions-section {
  position: relative;
  background: linear-gradient(135deg, #0D2344, #005BAC);
  overflow: hidden;
}
.solutions-section .subtitle, .solutions-section h2, .solutions-section p {
  color: #fff;
}
.solution-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 22px;
  padding: 25px 20px;
  height: 100%;
  transition: .45s;
  position: relative;
  overflow: hidden;
}
.solution-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: #26A9E0;
  transform: scaleX(0);
  transform-origin: left;
  transition: .45s;
}
.solution-card:hover {
  transform: translateY(-12px);
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}
.solution-card:hover::before {
  transform: scaleX(1);
}
.solution-card:hover h4, .solution-card:hover p, .solution-card:hover a {
  color: #0D2344;
}
.solution-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  margin-bottom: 18px;
  transition: .5s;
}
.solution-card:hover .solution-icon {
  transform: rotateY(180deg) scale(1.1);
}
.solution-card h4 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.solution-card p {
  color: rgba(255, 255, 255, .85);
  line-height: 24px;
  margin-bottom: 12px;
  font-size: 16px;
}
.solution-card a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.solution-card a i {
  transition: .4s;
}
.solution-card:hover a i {
  transform: translateX(8px);
}
@media(max-width:991px) {
  .solution-card {
    padding: 30px 25px;
  }
  .solution-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}
/*==========================
      BRANDS SECTION
===========================*/
.brands-section {
  background: #F8FBFF;
  position: relative;
  overflow: hidden;
}
.brand-text {
  color: #292929;
  line-height: 24px;
  font-size: 16px;
}
.brand-card {
  background: #fff;
  border-radius: 18px;
  height: 106px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: .45s;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
  border: 1px solid #edf2f7;
}
.brand-card img {
  max-width: 150px;
  max-height: 70px;
  filter: grayscale(100%);
  opacity: .8;
  transition: .45s;
}
.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 91, 172, .15);
}
.brand-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}
.brandSwiper {
  padding: 20px 0 0px;
}
@media(max-width:768px) {
  .brand-card {
    height: 120px;
    padding: 20px;
  }
  .brand-card img {
    max-width: 120px;
  }
}
/*==========================
      WHY CHOOSE US
===========================*/
.why-choose {
  background: #fff;
  position: relative;
}
.choose-image {
  position: relative;
  padding-right: 70px;
}
.choose-image img {
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
}
.experience-card {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 91, 172, .18);
}
.experience-card h2 {
  font-size: 52px;
  color: #005BAC;
  font-weight: 700;
}
.experience-card span {
  color: #777;
}
.floating-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  border-radius: 50%;
  top: -30px;
  left: -40px;
  z-index: -1;
}
.choose-grid {
  margin-top: 35px;
}
.choose-box {
  display: flex;
  gap: 20px;
  padding: 22px;
  border-radius: 18px;
  background: #F8FBFF;
  margin-bottom: 20px;
  transition: .4s;
}
.choose-box:hover {
  transform: translateX(10px);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 91, 172, .15);
}
.choose-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.choose-box h5 {
  font-weight: 700;
  color: #0D2344;
  margin-bottom: 8px;
}
.choose-box p {
  margin: 0;
  color: #6b7280;
  line-height: 28px;
}
.choose-cta {
  margin-top: 35px;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.choose-cta h4 {
  font-size: 28px;
  margin-bottom: 8px;
}
.choose-cta p {
  color: #fff;
  margin: 0;
}
.cta-btn {
  background: #fff;
  color: #005BAC;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
}
.cta-btn:hover {
  transform: translateY(-5px);
  color: #005BAC;
  box-shadow: 0 15px 35px rgba(255, 255, 255, .30);
}
@media(max-width:991px) {
  .choose-image {
    padding-right: 0;
    margin-bottom: 60px;
  }
  .experience-card {
    position: relative;
    right: auto;
    left: 30px;
    margin-top: -60px;
  }
  .choose-cta {
    text-align: center;
    justify-content: center;
  }
}
/*==================================
      ACHIEVEMENT SECTION
===================================*/
.achievement-section {
  position: relative;
  padding: 80px 0;
  background: url(images/bg/counter-bg.jpg) center center/cover fixed;
  overflow: hidden;
}
.achievement-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(5, 30, 60, .92), rgba(0, 91, 172, .90));
}
.achievement-section .container {
  position: relative;
  z-index: 2;
}
.achievement-title span {
  color: #26A9E0;
  letter-spacing: 2px;
  font-weight: 600;
}
.achievement-title h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0;
}
.achievement-title p {
  color: #d6e7f8;
  line-height: 24px;
}
.counter-card {
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 20px;
  text-align: center;
  padding: 23px 20px;
  transition: .45s;
}
.counter-card:hover {
  transform: translateY(-12px);
  background: #fff;
}
.counter-card:hover h2, .counter-card:hover p {
  color: #0D2344;
}
.counter-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.counter-card h2 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 0px;
}
.counter-card p {
  color: #dbe8f7;
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
}
.achievement-cta {
  background: #fff;
  border-radius: 25px;
  padding: 32px 21px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}
.achievement-cta h3 {
  color: #0D2344;
  font-size: 32px;
  font-weight: 700;
}
.achievement-cta p {
  color: #666;
  margin-top: 3px;
}
.cta-button {
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  color: #fff;
  text-decoration: none;
  padding: 18px 38px;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
}
.cta-button:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 91, 172, .30);
}
@media(max-width:991px) {
  .achievement-title h2 {
    font-size: 36px;
  }
  .achievement-cta {
    text-align: center;
    justify-content: center;
  }
}
/*=========================
        NEWS SECTION
==========================*/
.news-section {
  background: #F8FBFF;
}
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .4s;
}
.view-all-btn:hover {
  transform: translateY(-5px);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 91, 172, .25);
}
.featured-news {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  transition: .45s;
  height: 100%;
}
.featured-news:hover {
  transform: translateY(-10px);
}
.news-img {
  position: relative;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: .5s;
}
.featured-news:hover img {
  transform: scale(1.08);
}
.news-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #005BAC;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
}
.news-content {
  padding: 35px;
}
.news-category {
  display: inline-block;
  padding: 8px 18px;
  background: #EAF5FF;
  color: #005BAC;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}
.news-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #0D2344;
  margin-bottom: 20px;
}
.news-content p {
  line-height: 30px;
  color: #666;
  margin-bottom: 25px;
}
.news-content a {
  text-decoration: none;
  font-weight: 600;
  color: #005BAC;
}
.news-content a i {
  margin-left: 8px;
  transition: .4s;
}
.featured-news:hover a i {
  transform: translateX(8px);
}
.blog-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: .4s;
}
.blog-card:hover {
  transform: translateX(10px);
  box-shadow: 0 18px 40px rgba(0, 91, 172, .15);
}
.blog-card img {
  width: 140px;
  height: 110px;
  border-radius: 15px;
  object-fit: cover;
}
.blog-card span {
  color: #26A9E0;
  font-size: 14px;
  font-weight: 600;
}
.blog-card h5 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 700;
  color: #0D2344;
}
.blog-card a {
  color: #005BAC;
  font-weight: 600;
  text-decoration: none;
}
@media(max-width:991px) {
  .blog-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-card img {
    width: 100%;
    height: 220px;
  }
  .news-img img {
    height: 280px;
  }
  .news-content {
    padding: 25px;
  }
  .news-content h3 {
    font-size: 24px;
  }
}
/*==============================
        CONTACT MAP
===============================*/
.contact-map-section {
  position: relative;
  background: #08172D;
}
.contact-box {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 99;
}
.contact-box .row {
  background: #07162B;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .30);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 35px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  height: 100%;
  transition: .4s;
}
.contact-item:hover {
  background: #0D2344;
}
.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}
.contact-item span {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
  color: #26A9E0;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.contact-item h5 {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.map-area {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.map-area iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(110%) brightness(.85);
  transition: .5s;
}
.map-area:hover iframe {
  filter: none;
}
@media(max-width:991px) {
  .contact-box {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 30px;
  }
  .contact-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 25px;
  }
  .map-area {
    height: 450px;
  }
}
@media(max-width:576px) {
 .solutions-section p {
    color: #fff;
	 font-size: 16px;
}
	    .hero-content {
        margin-top: 119px;
    }
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  .contact-item h5 {
    font-size: 16px;
    line-height: 26px;
  }
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
/*=========================
        FOOTER
=========================*/
.footer-area {
  background: #07162B;
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}
.footer-area::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #0099ff;
  filter: blur(160px);
  opacity: .08;
  left: -150px;
  top: 120px;
}
.footer-newsletter {
  background: linear-gradient(135deg, #005BAC, #26A9E0);
  padding: 45px;
  border-radius: 20px;
  margin-top: -170px;
  margin-bottom: 80px;
  position: relative;
  z-index: 9;
}
.footer-newsletter h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-newsletter p {
  color: #EAF8FF;
  margin: 0;
}
.newsletter-form {
  display: flex;
  background: #fff;
  border-radius: 60px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 18px 25px;
  outline: none;
}
.newsletter-form button {
  border: none;
  background: #07162B;
  color: #fff;
  padding: 0 35px;
  font-weight: 600;
  transition: .4s;
}
.newsletter-form button:hover {
  background: #000;
}
.footer-logo {
  height: 65px;
  margin-bottom: 20px;
}
.footer-main p {
  color: #B8C8D8;
  line-height: 24px;
  font-size: 15px;
}
.footer-main h4 {
  color: #fff;
  margin-bottom: 25px;
  font-weight: 700;
}
.footer-main ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-main ul li {
  margin-bottom: 7px;
}
.footer-main ul li a {
  color: #B8C8D8;
  font-size: 15px;
  text-decoration: none;
  transition: .3s;
}
.footer-main ul li a:hover {
  color: #26A9E0;
  padding-left: 8px;
}
.footer-contact li {
  display: flex;
  gap: 15px;
  font-size: 15px;
  color: #B8C8D8;
}
.footer-contact i {
  color: #26A9E0;
  margin-top: 6px;
  width: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.footer-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #10263F;
  color: #fff;
  transition: .4s;
}
.footer-social a:hover {
  background: #26A9E0;
  transform: translateY(-6px);
}
.footer-main hr {
  margin: 28px 0 19px;
  border-color: rgba(255, 255, 255, .3)
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9FB4C8;
  padding-bottom: 19px;
  font-size: 14px;
}
@media(max-width:991px) {
  .footer-newsletter {
    margin-top: 0;
  }
  .newsletter-form {
    margin-top: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media(max-width:576px) {
  .newsletter-form {
    flex-direction: column;
    border-radius: 15px;
  }
  .newsletter-form button {
    padding: 16px;
  }
  .footer-newsletter {
    padding: 30px;
  }
}

.section-padding {
    padding: 70px 0;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0696d8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.section-tag span {
    width: 30px;
    height: 2px;
    background: #0696d8;
    display: inline-block;
}
.section-title {
    font-size: 34px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.section-description p{
    font-size: 16px;
    line-height: 1.9;
    color: #657286;
}
/* =========================================================
           1. BREADCRUMB / HERO
        ========================================================= */

.breadcrumb-section {
    position: relative;
    display: flex;
    align-items: center;
	padding: 190px 0 40px;
    overflow: hidden;
    background: linear-gradient( 110deg, rgba(4, 32, 68, 0.97), rgba(7, 62, 125, 0.91) ), url("../images/bg.png") center/cover no-repeat;
}
.breadcrumb-section::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    right: -150px;
    top: -230px;
    border: 1px solid rgba(255,255,255,.12);
}
.breadcrumb-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    right: 80px;
    bottom: -220px;
    border: 1px solid rgba(255,255,255,.10);
}
.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 55px 55px;
}
.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: fadeUp .8s ease both;
}
.breadcrumb-content .small-label {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.breadcrumb-content h1 {
    color: white;
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 6px;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
}
.breadcrumb-nav a {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    transition: .3s ease;
}
.breadcrumb-nav a:hover {
    color: white;
}
.breadcrumb-nav i {
    color: #69adff;
}
.breadcrumb-nav .active {
    color: white;
    font-weight: 600;
}
/* =========================================================
           2. ABOUT COMPANY
        ========================================================= */

.about-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}
.about-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #f1f7ff;
    left: -180px;
    top: 120px;
}
.about-image-wrap {
    position: relative;
    padding-right: 35px;
}
.about-image {
    position: relative;
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(5,40,80,.13);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.about-image:hover img {
    transform: scale(1.05);
}
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 45%, rgba(3,22,45,.7) );
}
.experience-card {
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 180px;
    padding: 25px 20px;

    border-radius: 18px;
    background: white;
    box-shadow: 0 20px 50px rgba(5,40,80,.16);
    text-align: center;
    z-index: 3;
}
.experience-card strong {
    display: block;
    color: var(--primary);
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 7px;
}
.experience-card span {
    font-size: 12px;
    color: #6a7788;
    font-weight: 700;
    line-height: 1.5;
}
.about-content {
    padding-left: 25px;
}
.about-content .section-title {
    max-width: 620px;
}
.about-content .section-description {
        font-size: 14px;
    line-height: 24px;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
    transition: .35s ease;
}
.feature-item:hover {
    transform: translateY(-4px);
    border-color: #c8dff8;
    box-shadow: 0 12px 30px rgba(11,99,206,.08);
}
.feature-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    color: var(--primary);
    font-size: 18px;
}
.feature-item span {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}
/* =========================================================
           3. VISION & MISSION
        ========================================================= */

.vision-section {
    position: relative;
    background: #f5f9fe;
    overflow: hidden;
}
.vision-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(11,99,206,.045);
    right: -180px;
    top: -160px;
}
.vision-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(11,99,206,.035);
    left: -150px;
    bottom: -140px;
}
.vision-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}
.vision-heading .section-description {
    max-width: 620px;
    margin: auto;
}
.vm-card {
    position: relative;
    height: 100%;
    padding: 45px;
    background: white;
    border: 1px solid #e3ebf4;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(6,42,80,.07);
    transition: all .4s ease;
}
.vm-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 25px 60px rgba(6,42,80,.12);
}
.vm-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--light-blue);
    right: -60px;
    top: -60px;
    transition: .4s ease;
}
.vm-card:hover::after {
    transform: scale(1.25);
}
.vm-icon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e8f3ff, #d9ebff);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
}
.vm-card h3 {
    position: relative;
    z-index: 2;
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 17px;
}
.vm-card p {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 1.5;
    color: #292929;
    margin: 0;
}
.vm-number {
    position: absolute;
    right: 25px;
    bottom: 15px;
    font-size: 75px;
    font-weight: 800;
    color: rgba(11,99,206,.045);
    line-height: 1;
}


        /* =========================================================
           ANIMATIONS
        ========================================================= */

        @keyframes fadeUp {
from {
opacity: 0;
transform: translateY(25px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all .8s ease;
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media (max-width: 991px) {
.section-padding {
    padding: 75px 0;
}
.about-image-wrap {
    padding-right: 0;
    margin-bottom: 55px;
}
.about-content {
    padding-left: 0;
}
.about-image {
    height: 430px;
}
.experience-card {
    right: 20px;
}
.vm-card {
    padding: 35px;
}
}

@media (max-width: 767px) {
.breadcrumb-section {
    min-height: 330px;
}
.breadcrumb-content h1 {
    letter-spacing: -1px;
}
.about-image {
    height: 350px;
    border-radius: 18px;
}
.experience-card {
    width: 145px;
    padding: 18px 12px;
    bottom: 20px;
}
.experience-card strong {
    font-size: 30px;
	
}
.about-features {
    grid-template-columns: 1fr;
}
.vm-card {
    padding: 30px;
}
.vm-card h3 {
    font-size: 24px;
}
}
/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    position: relative;
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}
.contact-section::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #f3f8fe;
    left: -280px;
    top: 100px;
}
.contact-wrapper {
    position: relative;
    z-index: 2;
}
/* =========================================================
   SECTION HEADING
========================================================= */

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.section-label::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--primary);
}
.section-title {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}
.section-description {
    font-size: 15px;
    line-height: 1.9;
    color: #6b7889;
}
/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    padding-right: 45px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px  0;
    border-bottom: 1px solid var(--border);
}
.contact-info-card:last-child {
    border-bottom: 0;
}
.contact-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #edf6ff;
    color: #0695d7;
    font-size: 21px;
}
.contact-info-card h4 {
    color: var(--navy);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}
.contact-info-card p {
    margin: 0;
    color: #292929;
    font-size: 14px;
    line-height: 1.7;
}
.contact-info-card a {
    color: #292929;
    text-decoration: none;
    transition: .3s;
}
.contact-info-card a:hover {
    color: var(--primary);
}
/* =========================================================
   SOCIAL
========================================================= */

.social-title {
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    margin: 25px 0 13px;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f1f6fb;
    color: #0695d7;
    text-decoration: none;
    transition: .3s;
}
.social-links a:hover {
    background: #0695d7;
    color: #fff;
    transform: translateY(-4px);
}
/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-box {
    padding: 45px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 25px 60px rgba(5,40,80,.09);
}
.contact-form-box h3 {
    color: var(--navy);
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 8px;
}
.form-subtitle {
    color: #788596;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}
.form-control, .form-select {
    min-height: 45px;
    border: 1px solid #dfe7ef;
    border-radius: 11px;
    padding: 13px 12px;
    color: #536276;
    font-size: 13px;
    box-shadow: none!important;
    transition: .3s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
}
textarea.form-control {
    min-height: 125px;
    resize: none;
}
.submit-btn {
    width: 100%;
    min-height: 53px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient( 110deg, #0D2344, #005BAC );
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    transition: .35s;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(7,104,215,.25);
}
/* =========================================================
   MAP / LOCATION
========================================================= */

.location-section {
    padding: 0 0 100px;
    background: #fff;
}
.location-box {
    height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: linear-gradient( rgba(5,31,58,.12), rgba(5,31,58,.12) ), url("https://images.unsplash.com/photo-1524666041070-9c8762e29c4b?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}
.location-card {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    padding: 27px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(5,40,80,.18);
}
.location-card h4 {
    color: var(--navy);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 10px;
}
.location-card p {
    font-size: 13px;
    color: #718093;
    line-height: 1.7;
    margin-bottom: 17px;
}
.direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 17px;
    border-radius: 9px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .3s;
}
.direction-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}
/* =========================================================
   ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {
.contact-section {
    padding: 80px 0;
}
.contact-info {
    padding-right: 0;
    margin-bottom: 45px;
}
.contact-form-box {
    padding: 35px;
}
}

@media(max-width:767px) {
.contact-hero {
    min-height: 320px;
}
.hero-content h1 {
    font-size: 45px;
}
.contact-section {
    padding: 65px 0;
}
.contact-form-box {
    padding: 25px 20px;
    border-radius: 18px;
}
.location-box {
    height: 470px;
}
.location-card {
    left: 15px;
    right: 15px;
    width: auto;
    top: auto;
    bottom: 15px;
    transform: none;
}
}
.bcs-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
/* ===============================
           SECTION TITLE
        =============================== */

.bcs-small-title {
    color: #0875d1;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.bcs-small-title span {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #0875d1;
    vertical-align: middle;
    margin-right: 8px;
}
.bcs-title {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 700;
    color: #062b4f;
    margin-bottom: 18px;
}
.bcs-title strong {
    color: #0875d1;
    font-weight: 700;
}
.bcs-intro {
    max-width: 720px;
    color: #718092;
    font-size: 15px;
    line-height: 1.8;
}
/* ===============================
           APPLICATIONS
        =============================== */

.bcs-applications {
    padding: 90px 0;
    background: #f7fafc;
}
.bcs-applications-head {
    margin-bottom: 50px;
}
.bcs-application-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e4ebf1;
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.bcs-application-card:hover {
    transform: translateY(-7px);
    border-color: #0875d1;
    box-shadow: 0 15px 35px rgba(0, 61, 110, 0.10);
}
.bcs-application-card::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 55px;
    left: 0;
    top: 32px;
    background: #0875d1;
}
.bcs-application-icon {
    width: 58px;
    height: 58px;
    background: #eaf5ff;
    color: #0875d1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 23px;
    margin-bottom: 25px;
}
.bcs-application-number {
    position: absolute;
    right: 25px;
    top: 18px;
    font-size: 48px;
    font-weight: 700;
    color: #eef4f8;
    line-height: 1;
}
.bcs-application-card h3 {
    font-size: 21px;
    color: #062b4f;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
}
.bcs-application-card p {
    color: #718092;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 0;
    position: relative;
}
/* ===============================
           HEALTHCARE
        =============================== */

.bcs-healthcare {
    padding: 90px 0;
    background: #062b4f;
}
.bcs-healthcare .bcs-small-title {
    color: #65b7ff;
}
.bcs-healthcare .bcs-small-title span {
    background: #65b7ff;
}
.bcs-healthcare .bcs-title {
    color: #fff;
}
.bcs-healthcare .bcs-title strong {
    color: #65b7ff;
}
.bcs-healthcare .bcs-intro {
    color: rgba(255, 255, 255, 0.65);
}
.bcs-healthcare-head {
    margin-bottom: 50px;
}
.bcs-health-card {
    height: 100%;
    background: #0b385f;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}
.bcs-health-card:hover {
    transform: translateY(-7px);
    background: #0e426e;
    border-color: rgba(101, 183, 255, 0.5);
}
.bcs-health-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}
.bcs-health-icon {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(101, 183, 255, 0.12);
    color: #65b7ff;
    font-size: 22px;
}
.bcs-health-number {
    font-size: 38px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.10);
}
.bcs-health-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}
.bcs-health-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 0;
}

/* ===============================
           RESPONSIVE
        =============================== */

@media (max-width: 991px) {

.bcs-title {
    font-size: 38px;
}
.bcs-applications, .bcs-healthcare {
    padding: 70px 0;
}
}

@media (max-width: 767px) {
.bcs-title {
    font-size: 32px;
}
.bcs-intro {
    font-size: 14px;
}
.bcs-application-card, .bcs-health-card {
    padding: 28px 25px;
}
.bcs-application-card h3, .bcs-health-card h3 {
    font-size: 18px;
}
}

@media (max-width: 575px) {
.bcs-applications, .bcs-healthcare {
    padding: 55px 0;
}
.bcs-title {
    font-size: 28px;
}
.bcs-small-title {
    font-size: 11px;
}
.bcs-application-number {
    font-size: 40px;
}
.bcs-application-icon, .bcs-health-icon {
    width: 52px;
    height: 52px;
}
}
/* =========================
           PRODUCT SECTION
        ========================= */
.bcs-product-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
.bcs-products {
    padding: 90px 0;
    background: #f6f9fc;
}
.bcs-product-item {
    position: relative;
    background: #ffffff;
    margin-bottom: 35px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e3eaf0;
    box-shadow: 0 10px 35px rgba(4, 43, 76, 0.06);
}
.bcs-product-content {
    padding: 55px 50px;
}
.bcs-product-image {
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    background: #f0f7fc;
}
.bcs-product-image img {
    width: 100%;
    max-width: 450px;
    max-height: 430px;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.bcs-product-item:hover .bcs-product-image img {
    transform: scale(1.05);
}
/* =========================
           PRODUCT LABEL
        ========================= */

.bcs-product-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0875d1;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.bcs-product-label i {
    font-size: 13px;
}
/* =========================
           TITLE
        ========================= */

.bcs-product-title {
    font-size: 36px;
    line-height: 1.2;
    color: #062b4f;
    font-weight: 700;
    margin-bottom: 20px;
}
.bcs-product-title span {
    color: #0875d1;
}
/* =========================
           DESCRIPTION
        ========================= */

.bcs-product-description {
    font-size: 14px;
    color: #292929;
    line-height: 1.6;
    margin-bottom: 20px;
}
/* =========================
           FEATURES
        ========================= */

.bcs-feature-title {
    font-size: 18px;
    color: #062b4f;
    font-weight: 700;
    margin-bottom: 15px;
}
.bcs-feature-list {
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}
.bcs-feature-list li {
    position: relative;
    font-size: 14px;
    color: #292929;
    padding-left: 27px;
    margin-bottom: 6px;
    line-height: 1.6;
}
.bcs-feature-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    background: #e9f5ff;
    color: #0875d1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}
/* =========================
           RANGE
        ========================= */

.bcs-range-title {
    font-size: 18px;
    color: #062b4f;
    font-weight: 700;
    margin-bottom: 15px;
}
.bcs-range-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.bcs-range-list li {
    font-size: 12px;
    font-weight: 600;
    color: #0875d1;
    background: #edf7ff;
    border: 1px solid #d9edfc;
    border-radius: 30px;
    padding: 8px 14px;
}
/* =========================
           NUMBER
        ========================= */

.bcs-product-number {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
    color: rgba(8, 117, 209, 0.07);
    z-index: 1;
}
/* =========================
           DIVIDER
        ========================= */

.bcs-product-divider {
    width: 55px;
    height: 3px;
    background: #0875d1;
    margin-bottom: 22px;
}

/* =========================
           MOBILE
        ========================= */

@media (max-width: 991px) {
.bcs-products {
    padding: 60px 0;
}
.bcs-product-content {
    padding: 40px 35px;
}
.bcs-product-image {
    min-height: 380px;
    padding: 35px;
}
.bcs-product-title {
    font-size: 30px;
}
}

@media (max-width: 767px) {
.bcs-product-item {
    margin-bottom: 25px;
}
.bcs-product-image {
    min-height: 300px;
    padding: 30px;
}
.bcs-product-content {
    padding: 35px 25px;
}
.bcs-product-title {
    font-size: 27px;
}
.bcs-product-description {
    font-size: 13px;
}
.bcs-feature-title, .bcs-range-title {
    font-size: 17px;
}
.bcs-product-number {
    font-size: 40px;
}
}
.bcs-service-wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
/* ==============================
           SERVICES SECTION
        ============================== */

.bcs-services {
    padding: 90px 0;
    background: #f6f9fc;
}
.bcs-services-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}
.bcs-services-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0875d1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 13px;
}
.bcs-services-label::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #0875d1;
}
.bcs-services-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #062b4f;
    margin-bottom: 16px;
}
.bcs-services-title span {
    color: #0875d1;
}
.bcs-services-intro {
    font-size: 14px;
    line-height: 1.8;
    color: #718092;
    margin-bottom: 0;
}
/* ==============================
           SERVICE CARD
        ============================== */

.bcs-service-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e1e9f0;
    border-radius: 16px;
    padding: 38px 32px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.bcs-service-card:hover {
    transform: translateY(-8px);
    border-color: #0875d1;
    box-shadow: 0 18px 40px rgba(4, 54, 94, 0.10);
}
.bcs-service-card::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #edf7ff;
    right: -25px;
    top: -25px;
}
.bcs-service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: rgba(8, 117, 209, 0.08);
}
/* ==============================
           ICON
        ============================== */

.bcs-service-icon {
    position: relative;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf5ff;
    color: #0875d1;
    border-radius: 12px;
    font-size: 23px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.bcs-service-card:hover .bcs-service-icon {
    background: #0875d1;
    color: #ffffff;
}
/* ==============================
           SERVICE TITLE
        ============================== */

.bcs-service-title {
    position: relative;
    color: #062b4f;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}
.bcs-service-description {
    position: relative;
    color: #292929;
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 25px;
}
/* ==============================
           SUB TITLE
        ============================== */

.bcs-service-subtitle {
    position: relative;
    font-size: 16px;
    color: #062b4f;
    font-weight: 700;
    margin-bottom: 14px;
}
/* ==============================
           LIST
        ============================== */

.bcs-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bcs-service-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #292929;
    font-size: 14px;
    line-height: 1.6;
}
.bcs-service-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf5ff;
    color: #0875d1;
    font-size: 8px;
}
/* ==============================
           TECHNICAL SUPPORT SPECIAL
        ============================== */

.bcs-support-list {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #e5edf3;
}

/* ==============================
           RESPONSIVE
        ============================== */

@media (max-width: 991px) {
.bcs-services {
    padding: 70px 0;
}
.bcs-services-title {
    font-size: 38px;
}
.bcs-service-card {
    padding: 32px 27px;
}
}

@media (max-width: 767px) {
.bcs-services {
    padding: 60px 0;
}
.bcs-services-heading {
    margin-bottom: 40px;
}
.bcs-services-title {
    font-size: 32px;
}
.bcs-services-intro {
    font-size: 13px;
}
.bcs-service-card {
    padding: 30px 25px;
}
.bcs-service-title {
    font-size: 20px;
}
}

@media (max-width: 575px) {
.bcs-services-title {
    font-size: 28px;
}
.bcs-services-label {
    font-size: 10px;
    letter-spacing: 1.5px;
}
.bcs-service-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
}
}