.hello{
	display:flex;
}

/* --- Luxury Cards Design --- */
.feature-item,
.service-item,
.plan__item,
.clients-item,
.blog__item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Inner Glow & Premium Hover Effect */
.feature-item::before,
.service-item::before,
.plan__item::before,
.clients-item::before,
.blog__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 2;
}

.feature-item::after,
.service-item::after,
.plan__item::after,
.clients-item::after,
.blog__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.feature-item:hover,
.service-item:hover,
.plan__item:hover,
.clients-item:hover,
.blog__item:hover {
    transform: translateY(-10px);
}

.feature-item:hover::after,
.service-item:hover::after,
.plan__item:hover::after,
.clients-item:hover::after,
.blog__item:hover::after {
    opacity: 1;
}

/* Specific spacing for elegance */
.feature-item { padding: 40px 30px; }
.service-item { padding: 45px 35px; }
.clients-item { padding: 40px; }

/* Refined Typography for Titles */
.feature-item__cont-title,
.service-item__cont-title,
.plan__item-header .title,
.blog__item-content-title a {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2c3e50;
}

/* Enhancing Icons with subtle gradient and inner shadow */
.feature-item__icon,
.service-item__icon {
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, #fdfdfd 0%, #f1f5f9 100%);
    box-shadow: 8px 8px 16px rgba(0,0,0,0.05), -8px -8px 16px rgba(255,255,255,0.8);
    border-radius: 50%;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Plan items specific luxury tweaks */
.plan__item-header {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 30px;
}
.plan__item-body {
    padding: 30px;
}
.plan__item-body ul li {
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    padding: 12px 0;
}

/* Smooth button transitions */
.cmn--btn {
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.cmn--btn:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}