.elementor-921 .elementor-element.elementor-element-58276ca{--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-921 .elementor-element.elementor-element-9e304d4{--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-921 .elementor-element.elementor-element-38f39ec{--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-921 .elementor-element.elementor-element-8ac35cd.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-2e9b580 *//* ============================
   Chemistry Olympiad Hero
=============================== */
.chem-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e1f5fe, #b3e5fc);
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin: 40px 0;
}

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

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

.chem-hero-text h1 {
  font-size: 2.2rem;
  color: #0277bd;
  margin-bottom: 15px;
}

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

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

.chem-hero-btn:hover {
  background: #01579b;
}

/* Graphics (Flask + Molecule) */
.chem-hero-graphic {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* Flask */
.flask {
  width: 70px;
  height: 100px;
  background: #81d4fa;
  border-radius: 0 0 35px 35px;
  position: relative;
  overflow: hidden;
  box-shadow: inset -4px -6px 8px rgba(0,0,0,0.2),
              2px 3px 6px rgba(0,0,0,0.2);
}

.flask::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: #81d4fa;
  border-radius: 10px;
}

/* Molecule */
.molecule {
  position: relative;
  width: 100px;
  height: 100px;
}

.molecule::before, .molecule::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: #0288d1;
  border-radius: 50%;
}

.molecule::before {
  top: 0;
  left: 35px;
}

.molecule::after {
  bottom: 0;
  right: 35px;
}

.molecule div {
  position: absolute;
  top: 35px;
  left: 35px;
  width: 30px;
  height: 30px;
  background: #4fc3f7;
  border-radius: 50%;
}

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

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

  .chem-hero-graphic {
    justify-content: center;
  }
}/* End custom CSS */