.top-banner {
  background: url("./images/topbar-image.jpg") center 30% / cover no-repeat;
  position: relative;
  padding: 110px 0;
}

.top-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 123, 255, 0.5); /* blue overlay */
}

.top-banner .container {
  position: relative;
  z-index: 1;
}

.top-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 112, 192, 0.7); /* Blue overlay with opacity */
  z-index: 0;
}

.top-banner .container {
  position: relative;
  z-index: 1; /* Keeps text above overlay */
}

.service-card img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 200px;
  object-fit: cover;
}
.service-card {
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
}

.why-upgrade-section {
  position: relative;
  background: url("./images/ac-bg-image.jpg") center center/cover no-repeat;
}
.why-upgrade-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 64, 128, 0.8); /* blue overlay */
  z-index: 0;
}
.why-upgrade-section .container {
  position: relative;
  z-index: 1;
}
.info-card {
  position: relative;
  border-radius: 15px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  background-color: transparent;
  box-shadow: 0 10px 25px rgba(219, 218, 218, 0.3);
  padding: 2rem;
  z-index: 1;
}

.info-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  z-index: 2;
}
.ac-section .image-wrapper {
  border-radius: 12px;
  border: 4px solid #0453a1;
  overflow: hidden;
  max-width: 100%;
}

.ac-section .image-wrapper img {
  width: 100%;
  display: block;
}

.btn-orange {
  background-color: #ff6b35;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  border: none;
}

.btn-orange:hover {
  background-color: #e65c2d;
}

.text-primary {
  color: #0453a1 !important;
}

.services-card {
  border-radius: 14px;
  /* border: 2px solid #ddd; border  */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* elevation */
  background-color: white; /* clean look */
}

.services-title {
  border-radius: 12px 12px 0 0;
  background-color: #0453a1; /* blue heading */
  font-weight: bold;
}

.services-card ul li {
  background: white;
  list-style: disc;
  border-radius: 5px;
}

.contact-card {
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.contact-card h5 {
  background-color: #0453a1; /* blue header */
  padding: 10px 15px;
  border-radius: 8px 8px 0 0;
}

.string-blue {
  color: #0453a1;
  font-weight: 600;
}
.feature-card {
  background-color: #0453a1; /* Bootstrap primary blue */
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.accordion-button {
  background-color: #0453a1;
  color: white;
}
.accordion-button:not(.collapsed) {
  background-color: #034280;
  color: white;
}
.accordion-item {
  flex: 1; /* Makes all items take equal vertical space */
  display: flex;
  flex-direction: column;
}

.accordion-button {
  flex-shrink: 0;
}

.accordion-body {
  flex-grow: 1;
}
.custom-border-color {
  border-color: #034280 !important;
  border-width: 15px;
}