.hero1 {
  background: url('../images/minibg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 20px 20px;
  position: relative;
  height: 25vh;
  z-index: 1;
}

.hero1::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(242, 8, 43, 0.7));
  z-index: -1;
}

.hero1 h1 {
  position: relative;
  font-size: 4rem;
  z-index: 1;
  top:1em;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
}
.about-left {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}
.about-right {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}
.about-right ul {
  list-style: none;
  padding: 0;
}
.about-right li {
  padding: 10px;
  cursor: pointer;
  background: #f1f1f1;
  margin-bottom: 10px;
  border-left: 4px solid transparent;
  transition: 0.3s;
}
.about-right li.active,
.about-right li:hover {
  background: #e0f7fa;
  border-left: 6px solid #e31227;
}

/* Partner Slider */
.partners {
  /* background: #f5f5f5; */
  padding: 70px 20px;
  overflow: hidden;
}

.partner-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.partner-track {
  display: flex;
  gap: 40px;
  will-change: transform;
}
.partner-track img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
}


/* Call to Action Section */
.cta {
  background: url('../images/web.png') center/cover no-repeat;
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}
.cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.call-button {
  display: inline-block;
  background-color: #e31227; 
  color: #fff;
  padding: 18px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.call-button i {
  margin-right: 10px;
}

.call-button:hover {
  background-color: #e31227;
  transform: scale(1.05);
}

/* Footer */
