/* Hero Section  */
.software-hero-section {
  background-image: url("assets/img/services/IT-Page-Banner.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* ........... */
.icon-box {
  background-color: #f27b21;
  color: #fff;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.icon-box i {
  font-size: 0.7rem;
}

.icon-card:hover .icon-box {
  background-color: #1c2d59;
}

.col-md-6.col-lg-4 {
  display: flex;
}

.col-md-6.col-lg-4 > div {
  flex: 1;
  display: flex;
}

.benefit-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: start;
  gap: 10px;
  transition: all 0.3s ease;
}

.benefit-item i {
  color: #1c2d59;
  transition: color 0.3s ease, transform 0.3s ease;
}

.benefit-item:hover {
  transform: scale(1.03);
  background-color: #f8f9fa;
}

.benefit-item:hover i {
  color: #f27b21;
  transform: scale(1.1);
}

@keyframes rotateGlobe {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb a {
  text-decoration: none;
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #ffffff;
}

.z-1 {
  z-index: 1;
  position: relative;
}
.z-2 {
  z-index: 2;
  position: relative;
}

/* 2nd section  */
.custom-heading {
  font-family: Georgia, serif;
  color: #1c2d59;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.custom-paragraph {
  font-family: Georgia, serif;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.benefit-item {
  font-family: Georgia, serif;
  font-size: 18px;
  color: #1c2d59;
}

.lab-team-section img {
  border-radius: 1rem;
}

/* 3rd section  */
.technology-insight-section img {
  border-radius: 1rem;
}

.custom-paragraph {
  font-family: Georgia, serif;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* carousel  */
.brand-carousel-section {
  background-color: #fff;
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  animation: scrollCarousel 25s linear infinite;
  display: flex;
  gap: 4rem;
}

.carousel-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.trustpilot-static img {
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
}

/* Carousel Animation */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 4th section  */
.faq-section .accordion-button {
  font-family: Georgia, serif;
  background-color: transparent;
  color: #1c2d59;
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #1c2d59;
  background-color: transparent;
}

.faq-section .accordion-body {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #444;
}

.call-box {
  background-color: #1c2d59;
  font-family: Georgia, serif;
  font-size: 16px;
}

/* services  */

.services-section {
  background-color: #f4f4fa;
}

.service-card {
  background-color: #fff;
  transition: color 0.3s ease;
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0%;
  width: 100%;
  background-color: #f27b21;
  z-index: 0;
  transition: height 0.4s ease-in-out;
}

.service-card:hover::before {
  height: 100%;
}

.service-card h6 {
  font-family: Georgia, serif;
  font-size: 16px;
  color: #1c2d59;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}

.service-card p {
  font-family: Georgia, serif;
  position: relative;
  z-index: 2;
}

.service-card .icon-service,
.service-card i {
  color: #f27b21;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  font-size: 2rem;
  margin: 1rem 0;
}

.service-card:hover h6,
.service-card:hover p {
  color: #fff !important;
}

.service-card:hover .icon-service,
.service-card:hover i {
  color: #fff;
}

.read-more-footer {
  background-color: #1c2d59;
  color: white;
  font-family: Georgia, serif;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  transition: filter 0.3s ease;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.read-more-footer:hover {
  filter: brightness(1.05);
}

/* CTA box */
.cta-border-box {
  border: 2px solid #1c2d59;
  background-color: #fff;
  font-family: Georgia, serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}
