.our-services-title {
    font-family: 'Erica One', sans-serif;
  font-size: 9vw;
  line-height: 0.85;
  color: #a01abf;
  margin: 0;
  font-weight: 1000;
  letter-spacing: -1px;
    text-align: center;
}

.our-services-title-style {
  align-items: flex-start;
  background-color: #fffbf3;
  position: relative;
  z-index: 4;
  margin-top: 0;
}

.hue-cards-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    padding:60px 20px;
    font-family:'Inter',sans-serif;
}

.hue-card{
    flex:1 1 320px;
    max-width:380px;
    min-height:420px;
    border-radius:20px;
    padding:60px 35px;
    color:#ffffff;

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    box-shadow:0 10px 20px rgba(0,0,0,0.1);
    transition:transform 0.3s ease;
}

.hue-card:hover{
    transform:translateY(-6px);
}


.hue-card img{
    width:300px;
    height:auto;
    margin-bottom:20px;
}

.hue-card a {
    color:#ffffff;
    text-decoration:none;
    font-weight:600;
    margin-top:70px;
    border:2px solid #ffffff;
    padding:10px 20px;
    border-radius:30px;
    transition:background-color 0.3s ease, color 0.3s ease;
}

.card-orange a:hover {
    background-color:#ffffff;
    color: #ff6b00;
    border:2px solid #ff984d;
    transition:background-color 0.3s ease, color 0.3s ease;
}

.card-blue a:hover {
    background-color:#ffffff;
    color: #4455ff;
    border:2px solid #7674ff;
    transition:background-color 0.3s ease, color 0.3s ease;
}

.card-purple a:hover {
    background-color:#ffffff;
    color: #c552f5;
    border:2px solid #e290ff;
    transition:background-color 0.3s ease, color 0.3s ease;
}


.hue-card h3{
    font-size:22px;
    font-weight:800;
    text-transform:uppercase;
    margin:20px 0 15px 0;
    letter-spacing:1px;
}


.hue-card p{
    font-size:15px;
    line-height:1.6;
    opacity:0.9;
    margin:0;
}

.card-orange{
    background:linear-gradient(135deg,#ff984d 0%,#ff6b00 100%);
    z-index: 1;
}

.card-blue{
    background:linear-gradient(135deg,#7674ff 0%,#4455ff 100%);
    z-index: 1;
}

.card-purple{
    background:linear-gradient(135deg,#e290ff 0%,#c552f5 100%);
    z-index: 1;

}

.bottom-image{
    width:100%;
    position:relative;
    bottom:0;
    display:block;
    opacity:0.3;
    margin-bottom: -100px;
    margin-top: -400px;
    pointer-events:none;
    z-index: -1;
}

/* ==============================
   Responsive
   ============================== */
@media (max-width: 1200px) {
  .bottom-image{
        margin-top: -300px;
  }
}
@media (max-width:768px){
    .hue-cards-container{
        flex-direction:column;
        align-items:center;
        gap:25px;
        padding:40px 15px;
    }

    .hue-card{
        max-width:95%;
        min-height:auto;
        padding:40px 25px;
    }

    .hue-card img{
        width:180px;
        margin-bottom:15px;
    }

    .hue-card h3{
        font-size:18px;
        margin:15px 0 10px 0;
    }

    .hue-card p{
        font-size:14px;
        line-height:1.5;
    }

    .hue-card a{
        margin-top:35px;
        padding:8px 18px;
        font-size:14px;
    }

    .bottom-image{
        margin-top:-50px;
        opacity:0.25;
    }
}