.elementor-900 .elementor-element.elementor-element-805742d{--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-900 .elementor-element.elementor-element-c2a1948{--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-900 .elementor-element.elementor-element-0e915ad{--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;}/* Start custom CSS for html, class: .elementor-element-1b7b069 *//* ============================
   General Knowledge Olympiad Hero
=============================== */
.gk-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;
}

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

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

.gk-hero-text h1 {
  font-size: 2.2rem;
  color: #01579b;
  margin-bottom: 15px;
}

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

.gk-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;
}

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

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

.globe {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at center, #0288d1 60%, #01579b 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: inset -5px -5px 10px rgba(255,255,255,0.3);
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
}

.globe::before {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.globe::after {
  width: 50%;
  height: 100%;
  left: 25%;
  top: 0;
}

.book {
  width: 70px;
  height: 50px;
  background: #fff;
  border: 2px solid #0288d1;
  border-radius: 5px;
  position: relative;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.1);
}

.book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #0288d1;
}

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

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

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