/* ===== GLOBAL STYLES ===== */
body {
  font-family: Arial, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}

/* header */

/* Overlay */

.body-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 5;
}

/* ACTIVE STATE */

.menu-open {
  overflow: hidden;
}

.menu-open .body-overlay {
  opacity: 1;
  visibility: visible;
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

.menu-closing .body-overlay {
  transition-delay: 0.45s;
}

.header .dropdown:hover .dropdown-menu {
  display: block;
}

.header {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.navbar-collapse {
  flex-grow: 0;
}

.menu-wrapper {
  display: flex;
  align-items: center;
}

.header .site-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.header .navbar-nav {
  display: flex;
  margin-left: auto;
}

.header .nav-link {
  display: flex;
  align-items: center;
  color: #eaf7f4;
  padding: 20px 16px;
  font-weight: 400;
}

.header .nav-link.active {
  color: #6fabff !important;
}

.header .nav-link:hover {
  color: #6fabff;
}

.header .nav-link:hover::after {
  transform: rotate(180deg);
}

.header .navbar-nav li {
  margin-right: 10px;
}

.customer-login .button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 100px;
  color: #ffffff;
  background-color: #6fabff;
  border: 1px solid transparent;
  transition: all 0.5s ease;
  font-weight: 500;
  text-align: center;
}

.header .customer-login .button:hover {
  background-color: #fff;
  border: 1px solid #6fabff;
  color: #6fabff;
}

.header .dropdown-toggle::after {
  margin-left: 8px;
  font-size: 20px;
}

/* ===== SOLUTIONS(Header) ===== */

/* solution-tabs */

.solution-dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 0;
}

.solution-tabs-wrapper {
  background: #fff;
  padding: 14px 30px;
}

.solution-tabs-wrapper .nav-link {
  color: #000 !important;
  font-weight: 500;
  border: none;
}

.solution-tabs-wrapper .nav-link.active {
  border-bottom: 2px solid #6fabff;
  color: #6fabff !important;
  background: none;
}

.solution-tabs-wrapper .nav-link:hover {
  border-bottom: 2px solid #6fabff;
}

/* solution-tabs-content */

.tab-content {
  padding: 40px;
}

.tab-card-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.tab-card {
  width: 20%;
  max-width: 30%;
  flex-grow: 1;
  padding: 25px;
  border: 1px solid transparent;
  border-radius: 25px;
  background-image: linear-gradient(145deg, #fff);
  transition: all 0.5s ease-in;
}

.tab-card:hover {
  background-image: linear-gradient(145deg, #fff 30%, #006aff3e 100%);
  border: 1px solid #045dd9;
  border-radius: 25px;
}

.tab-card img {
  height: 60px;
  object-fit: contain;
}

.tab-card h5 {
  color: #063c34;
  margin-top: 5px;
}

.tab-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #000;
}

/* ===== INDUSTRIES(Header) ===== */

.industry-dropdown-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 0;
}

.industry-card-wrapper {
  display: flex;
  gap: 10px;
  padding: 40px;
  background: #fff;
}

.industry-card {
  width: 20%;
  height: 150px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #045dd9a3;
}

.industry-card h3 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
}

/* Blog section */

.blog-section {
  background-image: url("../images/banner-image.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 224px 0 112px 0;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(4px);
}
.blog-overlay {
  position: absolute;
  inset: 0;
  background: #021530a3;
  z-index: 2;
}
.blog-section .container {
  z-index: 3;
}

.blog-content p {
  line-height: 26px;
  color: #fff;
  padding: 0 95px;
  margin-top: 32px;
}

.blog-content h2 {
  color: #6fabff;
  font-size: 44px;
  line-height: 42px;
  font-weight: 600;
}

.blog-card {
  border: 1px solid #ece8e8;
  padding: 30px 40px;
  overflow: hidden;
  background: #fff;
}
.blog-card:hover {
  border: 1px solid #6fabff;
}

.blog-img {
  overflow: hidden;
}
.blog-img img {
  width: 100%;
}

.blog-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

.read-more {
  font-size: 14px;
  color: #6fabff;
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .blog-section {
    min-height: 75vh;
    height: unset;
  }
  .blog-content p {
    padding: 0px 12px;
  }
  .blog-content h2 {
    font-size: 40px;
  }
  .blog-card {
    width: 90%;
    margin: auto;
    padding: 30px;
  }
  .blog-title {
    font-size: 20px;
  }
}

/* ......For Tablet...... */

@media (min-width: 576px) and (max-width: 767.8px) {
  .blog-section {
    min-height: 70vh;
    height: unset;
  }
  .blog-content p {
    padding: 0;
    margin-top: 30px;
  }
  .card-section {
    max-width: 767.8px;
  }
  .blog-card {
    width: 90%;
    margin: auto;
  }
}

/* .............For Laptop............ */

@media (min-width: 768px) and (max-width: 991.8px) {
  .blog-section {
    min-height: 55vh;
    height: unset;
  }
  .blog-section .container {
    max-width: 991.8px;
  }
  .blog-content h2 {
    font-size: 40px;
  }
  .blog-content p {
    padding: 0;
    margin-top: 30px;
  }
  .card-section {
    max-width: 991.8px;
    padding: 0 30px;
  }
  .blog-card {
    width: 95%;
    height: 100%;
    margin: auto;
  }
}

/* ............For Desktop........... */

@media (min-width: 992px) and (max-width: 1200px) {
  .blog-section {
    min-height: 60vh;
    height: unset;
  }
  .blog-content h2 {
    font-size: 40px;
  }
  .blog-content p {
    padding: 0 30px;
    margin-top: 30px;
  }
  .blog-card {
    width: 100%;
  }
}
