.elementor-168 .elementor-element.elementor-element-d715ec5{--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;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-1b4eb4a */.elementor-168 .elementor-element.elementor-element-d715ec5{
    padding: 0px !important;
}
/* BASE */
.cm-wrap{
  position:relative;
  padding:120px 20px;
  background:linear-gradient(135deg,#f4f7fc,#eef3ff);
  overflow:hidden;
  font-family:system-ui;
}

/* BACKGROUND LAYER */
.cm-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(0,60,135,0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,135,40,0.10), transparent 45%);
  z-index:0;
}

/* FLOATING GLOW */
.cm-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(80px);
  opacity:0.35;
  z-index:0;
  animation:floatGlow 8s ease-in-out infinite;
}

.cm-g1{
  width:300px;
  height:300px;
  background:#FF8728;
  top:-60px;
  left:-60px;
}

.cm-g2{
  width:350px;
  height:350px;
  background:#003C87;
  bottom:-100px;
  right:-100px;
  animation-delay:2s;
}

/* GRID */
.cm-grid{
  position:relative;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  z-index:2;
  animation:fadeUp 0.8s ease;
}

/* INFO */
.cm-info h1{
  font-size:44px;
  color:#003C87;
  margin-bottom:15px;
  animation:slideIn 0.8s ease;
}

.cm-info p{
  color:#5b6b82;
  line-height:1.7;
}

.cm-badge{
  display:inline-block;
  background:#003C87;
  color:#fff;
  padding:6px 14px;
  border-radius:30px;
  font-size:12px;
  margin-bottom:15px;
}

/* FEATURES */
.cm-features{
  margin-top:40px;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.cm-item{
  display:flex;
  gap:15px;
  opacity:0;
  transform:translateY(20px);
  animation:fadeItem 0.8s ease forwards;
}

.cm-item:nth-child(1){animation-delay:0.2s;}
.cm-item:nth-child(2){animation-delay:0.4s;}
.cm-item:nth-child(3){animation-delay:0.6s;}

.cm-item span{
  width:34px;
  height:34px;
  border-radius:10px;
  background:#FF8728;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.3s;
}

.cm-item:hover span{
  transform:scale(1.1) rotate(5deg);
}

/* FORM BOX */
.cm-form-box{
  display:flex;
  justify-content:center;
}

/* FORM CARD */
.cm-form{
  width:100%;
  max-width:450px;
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(12px);
  border-radius:18px;
  padding:50px;
  box-shadow:0 30px 90px rgba(0,0,0,0.15);
  animation:popIn 0.8s ease;
}

/* FORM HEADER */
.cm-form h2{
  color:#003C87;
  margin-bottom:10px;
}

.cm-form p{
  color:#6b7c93;
  margin-bottom:25px;
}

.cm-form-badge{
  display:inline-block;
  background:#FF8728;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  margin-bottom:10px;
}

/* FIELDS */
.cm-field{
  position:relative;
  margin-bottom:18px;
}

.cm-field input,
.cm-field textarea,
.cm-field select{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid #d9e3f0;
  background:#f9fbff;
  outline:none;
  transition:.3s;
}

.cm-field textarea{
  min-height:120px;
  resize:none;
}

.cm-field input:focus,
.cm-field textarea:focus,
.cm-field select:focus{
  border-color:#003C87;
  box-shadow:0 0 0 3px rgba(0,60,135,0.1);
}

/* LABEL */
.cm-field label{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  background:#fff;
  padding:0 6px;
  font-size:12px;
  color:#8aa0bd;
  transition:.2s;
}

.cm-field textarea + label{
  top:20px;
}

.cm-field input:focus + label,
.cm-field input:valid + label,
.cm-field textarea:focus + label,
.cm-field textarea:valid + label,
.cm-field select:valid + label{
  top:-8px;
  color:#FF8728;
}

/* BUTTON */
.cm-form button{
  width:100%;
  padding:16px;
  border:none;
  border-radius:10px;
  background:#FF8728;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.cm-form button:hover{
  background:#ff6a00;
  transform:translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(30px);}
  to{opacity:1; transform:translateY(0);}
}

@keyframes slideIn{
  from{opacity:0; transform:translateX(-30px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes popIn{
  from{opacity:0; transform:scale(0.95);}
  to{opacity:1; transform:scale(1);}
}

@keyframes fadeItem{
  to{opacity:1; transform:translateY(0);}
}

@keyframes floatGlow{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(20px);}
}

/* RESPONSIVE */
@media(max-width:1024px){
  .cm-grid{
    grid-template-columns:1fr;
  }

  .cm-form{
    max-width:100%;
  }
}/* End custom CSS */