.hero-section {
  padding: 140px 0;
  background: url("../images/bg-6.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: left;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 700px;
  margin-left: 20%;
}
.hero-content h1 {
  font-weight: bold;
}

.transparent-card {
  color: var(--white);
  border-radius: 8px;
  padding: 30px 20px;
  background: hsla(0, 0%, 100%, 0.16);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  min-width: 110px;
}

.transparent-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
}

.transparent-card .icon i {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--white);
}

.transparent-card h3 {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400;
  color: var(--white);
}

.modern-about {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-light),
    var(--primary-light-3)
  );
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.about-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  border: 1px solid var(--primary-light-2);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-card p {
  font-size: 1.05rem;
  color: var(--secondary);
  line-height: var(--line-height);
}

.highlight-line {
  margin-top: 60px;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  text-align: center;
}

.highlight-line p {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
