.elementor-917 .elementor-element.elementor-element-0e5d71e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-917 .elementor-element.elementor-element-2e01854{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-917 .elementor-element.elementor-element-023ee68{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-917 .elementor-element.elementor-element-3ad8ce5.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-5478187 *//* ============================
   Biology Olympiad Hero
=============================== */
.bio-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 40px 0;
}

.bio-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.bio-hero-text {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.bio-hero-text h1 {
  font-size: 2.2rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.bio-hero-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.bio-hero-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #43a047;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.bio-hero-btn:hover {
  background: #2e7d32;
}

/* DNA + Leaf Graphics */
.bio-hero-graphic {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.dna {
  width: 20px;
  height: 120px;
  background: repeating-linear-gradient(
    to bottom,
    #2e7d32,
    #2e7d32 10px,
    transparent 10px,
    transparent 20px
  );
  border-radius: 10px;
  position: relative;
}

.dna::before,
.dna::after {
  content: "";
  position: absolute;
  left: -15px;
  width: 50px;
  height: 2px;
  background: #43a047;
  transform: rotate(45deg);
  box-shadow: 0 20px #43a047, 0 40px #43a047, 0 60px #43a047, 0 80px #43a047, 0 100px #43a047;
}

.dna::after {
  transform: rotate(-45deg);
  left: -15px;
}

.leaf {
  width: 70px;
  height: 100px;
  background: radial-gradient(circle at 30% 30%, #66bb6a, #2e7d32);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  box-shadow: inset -3px -5px 8px rgba(255,255,255,0.3), 2px 4px 6px rgba(0,0,0,0.15);
}

.leaf::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  width: 2px;
  height: 80%;
  background: #fff;
  transform: translateX(-50%);
  opacity: 0.7;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .bio-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .bio-hero-text {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .bio-hero-graphic {
    flex-direction: row;
    flex-wrap: wrap;
  }
}/* End custom CSS */