
#hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero-4 .container {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
#hero-4 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-4 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



#awards-15 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
}
#awards-15 .logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
}
#awards-15 .logo-item {
  text-align: center;
  flex-shrink: 0;
}
#awards-15 .logo-item a {
  display: inline-block;
  line-height: 1;
  filter: grayscale(90%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
#awards-15 .logo-item a:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}
#awards-15 .logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 45px;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  #awards-15 .logo-grid {
    gap: 1.5rem 1.8rem;
  }
  #awards-15 .logo-item img {
    max-height: 40px;
  }
}
@media (max-width: 767.98px) {
  #awards-15 .logo-grid {
    gap: 1rem 1.5rem;
  }
  #awards-15 .logo-item img {
    max-height: 35px;
  }
}



#press-mentions-1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#press-mentions-1 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#press-mentions-1 .section-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-bottom: 1rem;
}
#press-mentions-1 .section-subtitle {
  font-size: 1.2rem;
  color: #495057;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-weight: 500;
}
#press-mentions-1 .logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
#press-mentions-1 .logo-item {
  text-align: center;
}
#press-mentions-1 .logo-item a {
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-1 .logo-item a:hover {
  filter: grayscale(0%);
  opacity: 1;
}
#press-mentions-1 .logo-item img {
  max-width: 100%;
  height: auto;
  max-height: 45px;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  #press-mentions-1 .logo-grid {
    gap: 1.5rem 2rem;
  }
  #press-mentions-1 .logo-item img {
    max-height: 40px;
  }
}
@media (max-width: 767.98px) {
  #press-mentions-1 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #press-mentions-1 .section-header {
    margin-bottom: 2rem;
  }
  #press-mentions-1 .logo-grid {
    gap: 1.5rem 1.5rem;
  }
  #press-mentions-1 .logo-item img {
    max-height: 35px;
  }
  #press-mentions-1 .logo-item {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 575.98px) {
  #press-mentions-1 .logo-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}



#text-block-9 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #f0f2f5);
}
#text-block-9 .container {
  max-width: 800px;
}
#text-block-9 .section-title-main {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 40px;
}
#text-block-9 .text-card {
  background-color: var(--card-bg-color, #ffffff);
  color: var(--text-color, #333333);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  border: var(--border-width, 4px) solid transparent;
  background-clip: padding-box;
}
#text-block-9 .text-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: calc(-1 * var(--border-width, 4px));
  border-radius: inherit;
  background: linear-gradient(
    to right,
    var(--grad-color-1, #833ab4),
    var(--grad-color-2, #fd1d1d),
    var(--grad-color-3, #fcb045)
  );
}
#text-block-9 .text-card .text-heading {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: inherit;
}
#text-block-9 .text-card .text-paragraph {
  font-size: 1.05rem;
  line-height: 1.75;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 1rem;
}
#text-block-9 .text-card .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #text-block-9 {
    padding: 60px 0;
  }
  #text-block-9 .text-card {
    padding: 30px;
  }
  #text-block-9 .text-card .text-heading {
    font-size: 1.8rem;
  }
  #text-block-9 .text-card .text-paragraph {
    font-size: 1rem;
  }
}



#call-to-action-10 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
#call-to-action-10 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-10 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-10 .cta-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #2575fc;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-10 .cta-btn:hover {
  background-color: #e2e6ea;
  color: #2575fc;
}
@media (max-width: 767.98px) {
  #call-to-action-10 h2 {
    font-size: 28px;
  }
  #call-to-action-10 p {
    font-size: 16px;
  }
}


