.elementor-39 .elementor-element.elementor-element-d298d6b{--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:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-39 .elementor-element.elementor-element-658ffc3{--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;--padding-top:50px;--padding-bottom:0px;--padding-left:75px;--padding-right:75px;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-39 .elementor-element.elementor-element-d531752 .elementor-button{background-color:#FCAB10;font-family:"Roboto", Sans-serif;font-size:17px;font-weight:500;border-radius:0px 0px 0px 0px;padding:5px 5px 5px 5px;}.elementor-39 .elementor-element.elementor-element-d531752 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-39 .elementor-element.elementor-element-9684fa2 > .elementor-widget-container{margin:-15px 0px 0px 0px;}.elementor-39 .elementor-element.elementor-element-9684fa2 .elementor-heading-title{font-family:"Raleway", Sans-serif;font-size:47px;font-weight:400;color:#000000;}@media(max-width:1024px){.elementor-39 .elementor-element.elementor-element-658ffc3{--padding-top:30px;--padding-bottom:30px;--padding-left:10px;--padding-right:10px;}}@media(max-width:767px){.elementor-39 .elementor-element.elementor-element-9684fa2 .elementor-heading-title{font-size:30px;}}/* Start custom CSS for html, class: .elementor-element-ce304bc */* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: 'Raleway', sans-serif;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  padding: 0 75px;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  overflow: hidden;
  position: relative;
}

.pattern {
  position: absolute;
  background-image: radial-gradient(#999 1.2px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.6;
  z-index: 0;
}

.pattern.bottom-left {
  bottom: 20px;
  left: 20px;
  width: 140px;
  height: 140px;
}

.pattern.top-right {
  top: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
}

.pattern.center-left {
  top: 50%;
  left: -30px;
  width: 80px;
  height: 80px;
  transform: translateY(-50%);
}

.hero-text {
  max-width: 50%;
  z-index: 2;
  animation: floatIn 1.5s ease-out forwards;
}

.hero h1 {
  font-size: 3rem;
  color: #111;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero button {
  padding: 12px 30px;
  font-size: 1rem;
  color: white;
  background-color: #FBAB10;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, padding-right 0.3s;
  position: relative;
  overflow: hidden;
}

.hero button::after {
  content: '\2192';
  position: absolute;
  opacity: 0;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, right 0.3s ease;
}

.hero button:hover {
  background-color: #e69a0c;
  padding-right: 45px;
}

.hero button:hover::after {
  opacity: 1;
  right: 15px;
}

.swiper {
  width: 45%;
  height: 80%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #FBAB10;
  width: 30px;
  height: 30px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #e69a0c;
}

@keyframes floatIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px;
    height: auto;
  }

  .hero-text {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .swiper {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .pattern.bottom-left,
  .pattern.top-right,
  .pattern.center-left {
    display: none;
  }

  .swiper {
    height: 300px;
  }
}/* End custom CSS */