.global-hero-brand-title
{
    font-size: 50px;
}

/* Section 02 */
.equal-section {
  padding: 40px 0;
}
.section-02 {
  background-color: var(--light-section-color);
}

/* Section 03 */

.section-03 .fade-in,
.section-07 .fade-in {
  margin-bottom: 40px;
}
.section-03 .service-card,
.section-07 .service-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.section-03 .icon,
.section-07 .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--light-green-color);
  font-size: 40px;
}
.section-03 .service-title,
.section-07 .service-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-blue-color);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}
.section-03 .service-card p,
.section-07 .service-card p {
  color: #666;
}

.section-03 .service-card:hover,
.section-07 .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(32, 40, 45, 0.1);
  border-color: var(--dark-blue-color);
}

/* Section-04 */
.section-04 {
  background-color: var(--light-section-color);
}

.section-04 .team-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  object-fit: cover;
}

.section-04 p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.section-04 .text-link {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 500;
}

.section-04 .text-link:hover {
  text-decoration: underline;
}

.section-04 .service-list {
  list-style: none;
  padding: 0;
  padding-left: 25px;
  /* margin-top: 30px; */
}

.section-04 .service-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  padding-left: 30px;
  line-height: 30px;
}

.section-04 .service-list li:last-child {
  border-bottom: none;
}

.section-04 .service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--light-green-color);
  font-weight: bold;
  font-size: 25px;
}
.section-04 .left-image {
  background-image: url("../../imgs/usa/office-features.webp");
  border-radius: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .section-04 .team-image {
    margin-bottom: 30px;
  }
}

/* Section-05 */
.section-05 .right-image {
  background-image: url("../../imgs/usa/delaware-office.webp");
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
.section-05 .right-image {
    height: 428px;
    padding: 0 25px;
    margin: 20px 15px;
    background-size: cover;
    background-position-x: center;
}
}
/* Section-06 */
.cta-wrapper-section {
  padding: 40px 0;
}

.ba-cta-wrapper {
  position: relative;
  margin: 0 auto;
  border-radius: 24px;
  padding: 40px 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: linear-gradient(145deg, #20282d 0%, #1b2429 50%, #0f1417 100%);
}

.ba-cta-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(74, 158, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(74, 158, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}

.ba-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin: 0 auto;
}
.ba-cta-content h2 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 45px;
}

.ba-cta-subtitle {
  font-size: 20px;
  color: #b8c5d0;
  margin-bottom: 40px;
  line-height: 1.6;
}
.ba-cta-btn {
  display: inline-block;
  padding: 18px 48px;
  background: #ffffff;
  color: #20282d;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.ba-cta-btn:hover {
  transform: translateY(-2px);
  color: var(--dark-blue-color);
}

@media (max-width: 768px) {
  .ba-cta-wrapper {
    padding: 60px 30px;
    border-radius: 16px;
  }

  .ba-cta-content h2 {
   font-size: 20px;
        line-height: 35px;
  }
  .ba-cta-subtitle {
    font-size: 18px;
  }
  .ba-cta-btn {
    padding: 16px 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .ba-cta-wrapper {
    padding: 40px 20px;
  }
}

/* Section-07 */
.section-02 {
  background-color: var(--light-section-color);
}

/* Section-08 */
.section-08 {
  background-color: var(--light-section-color);
}

.section-08 h3 {
  font-size: 30px;
}

.section-08 h4 {
  font-size: 25px;
}


/* Media Query */
@media (max-width: 1199px) {
    .global-hero-brand-title {
        font-size: 35px;
    }
}