.elementor-26966 .elementor-element.elementor-element-b60f547{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26966 .elementor-element.elementor-element-b60f547:not(.elementor-motion-effects-element-type-background), .elementor-26966 .elementor-element.elementor-element-b60f547 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E0E0E0;}.elementor-26966 .elementor-element.elementor-element-fef6c9f{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-26966 .elementor-element.elementor-element-b0f8d65{--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:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-26966 .elementor-element.elementor-element-e879f94{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-26966 .elementor-element.elementor-element-b60f547{--content-width:100%;}.elementor-26966 .elementor-element.elementor-element-b0f8d65{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-fef6c9f *//* Why Us Section */
.why-us {
  font-family: 'Poppins', sans-serif;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.wu-header {
  text-align: center;
  margin-bottom: 60px;
}

.wu-header h2 {
  font-size: 32px;
  color: #111827;
  font-weight: 700;
}

.wu-header p {
  font-size: 16px;
  color: #6b7280;
}

.wu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.wu-card {
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  background: #ffffff;
  box-shadow: 11px 11px 15px #acacac, -11px -11px 15px #cdcdcd;
  overflow: hidden;
}

.wu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.wu-icon {
  font-size: 36px;
  width: 70px;
  height: 70px;
  background: #DD3162; /* Blue for Why Us, different from verification red */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 18px;
}

.wu-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111827;
}

.wu-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}
.verification-guide{
  font-family:'Poppins', sans-serif;
  max-width:1200px;
  margin:50px auto;
  padding:0 20px;
}

.vg-header{
  text-align:center;
  margin-bottom:60px;
}

.vg-header h2{
  font-size:32px;
  color:#111827;
  font-weight:700;
}

.vg-header p{
  font-size:16px;
  color:#6b7280;
}

.vg-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.vg-card{
    
  padding:35px 25px;
  border-radius:16px;
  text-align:center;
  transition:all 0.3s ease;
  position:relative;
  background: #ffffff;
  box-shadow: 11px 11px 15px #acacac, -11px -11px 15px #cdcdcd;
    overflow: hidden;
}

.vg-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.12);
}

.vg-icon{
  font-size:36px;
  width:70px;
  height:70px;
  background:#DD3162;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:18px;
}

.vg-card h3{
  font-size:20px;
  margin-bottom:10px;
  color:#111827;
}

.vg-card p{
  font-size:15px;
  color:#6b7280;
  line-height:1.6;
}

/* Success card */
.success{
  border:2px solid #22c55e;
  background:#f0fdf4;
}

.success .vg-icon{
  background:#22c55e;
  font-size:22px;
}

.success .check{
  font-weight:bold;
}

/* Submit button */
.vg-submit{
  text-align:center;
  margin-top:50px;
}

.vg-btn{
  background:#DD3162;
  color:white;
  font-weight:600;
  font-size:16px;
  padding:14px 40px;
  border-radius:12px;
  border:none;
  cursor:pointer;
  transition:all 0.3s ease;
  position: relative;
}
.wu-card::after,
.vg-card::after{
    content: '';
    height: 4rem;
    width:10rem;
    background: #3B82F6;
    position: absolute;
    top: 0;
    left: -3.5rem;
    transform: rotate(-45deg);
}

.vg-btn:hover{
  background:#b72b53;
  color:white;
}
.vg-card {
  position: relative;
}

.vg-step {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #DD3162;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}/* End custom CSS */