.elementor-1794 .elementor-element.elementor-element-e84abe1{--display:flex;--margin-top:-2%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}.elementor-1794 .elementor-element.elementor-element-1317ed6{width:100%;max-width:100%;}.elementor-1794 .elementor-element.elementor-element-e2879ca{--display:flex;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-1794 .elementor-element.elementor-element-e84abe1{--width:500px;--min-height:0vh;}}/* Start custom CSS for html, class: .elementor-element-1317ed6 *//* HERO BANNER */
.hero{
  width:100%;
  height:100vh;
  background:url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  text-align:center;
  color:#fff;
}

/* DARK OVERLAY */
.hero::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:700px;
  padding:20px;
}

.hero h1{
  font-size:48px;
  font-weight:bold;
  margin-bottom:15px;
  color:#ffff;
  letter-spacing:1px;
}

.hero p{
  font-size:18px;
  line-height:1.6;
  opacity:0.9;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:25px;
  padding:12px 28px;
  background:#FF0D55;
  color:#fff;
  text-decoration:none;
  border-radius:30px;
  font-size:16px;
  transition:0.3s;
}

.btn:hover{
  background:#fff;
  color:#292B2D;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5ec7c9a *//* ===== GLOBAL ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#F6F4F1;
}

/* ===== SECTION ===== */
.section{
  padding:50px 8%;
}

.section h2{
  text-align:center;
  margin-bottom:30px;
  font-size:30px;
  color:#292B2D;
}

/* ===== GRID ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:30px;
}

/* ===== CARD ===== */
.card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
  text-align:center;
}

.card:hover{
  transform:translateY(-8px);
}

.card img{
  width:100%;
  height:300px;
  object-fit:cover;
}

.card h3{
  margin:15px 0 5px;
  color:#292B2D;
}

.card a{
  display:inline-block;
  margin:15px 0 20px;
  padding:10px 20px;
  background:#FF0D55;
  color:#fff;
  text-decoration:none;
  border-radius:25px;
  transition:0.3s;
}

.card a:hover{
  background:#292B2D;
}/* End custom CSS */