.elementor-904 .elementor-element.elementor-element-79355d6{--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-904 .elementor-element.elementor-element-44fd5a4{--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-904 .elementor-element.elementor-element-a0278b7{--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-904 .elementor-element.elementor-element-3da4c0f.elementor-element{--align-self:center;}/* Start custom CSS for html, class: .elementor-element-4b380b0 *//* Hero Section Background */
.math-hero {
  background: linear-gradient(135deg, #3b82f6, #f97316);
  padding: 70px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Container Layout */
.math-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Left Content */
.math-hero-text {
  flex: 1;
  min-width: 320px;
  margin-right: 30px;
}
.math-hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}
.math-hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.7;
}
.math-hero-btn {
  display: inline-block;
  background: #fff;
  color: #1e293b;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.math-hero-btn:hover {
  background: #1e293b;
  color: #fff;
}

/* Right Graphic Section */
.math-hero-graphic {
  flex: 1;
  min-width: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Shapes */
.math-hero-graphic .circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  position: absolute;
  top: 20px;
  left: 40px;
  animation: float 6s ease-in-out infinite;
}
.math-hero-graphic .triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(255,255,255,0.3);
  position: absolute;
  right: 40px;
  top: 80px;
  animation: float 5s ease-in-out infinite;
}
.math-hero-graphic .square {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.3);
  position: absolute;
  bottom: 50px;
  left: 120px;
  animation: float 7s ease-in-out infinite;
}
.math-hero-graphic .numbers {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}/* End custom CSS */