

body {
    background-color: #0C0F38;
}


.gradient-title {
    
    background: linear-gradient(45deg, #F379E3, #20DFF5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-dark {
    background: linear-gradient(45deg,hsl(282, 99%, 60%) 0%, hsl(180, 100%, 60%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.gradient-light {
    background: linear-gradient(45deg, hsl(282, 99%, 40%) 0%,hsl(180, 100%, 40%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
   /* text-shadow: 0 0 4px rgba(130,30,241,0.4);*/
}

.btn-primary {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    padding: 13px 32px;
    background: linear-gradient(45deg, #821EF1, #01A4AE);
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}

    .btn-primary:hover {
        background: linear-gradient(45deg, #01A4AE, #821EF1);
        color: #fff;
    }

.btn-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    padding: 13px 32px;
    background: transparent;
    color: #0c0f38;
    border: 2px solid #0c0f38;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
}

    .btn-secondary:hover {
        background: #0c0f38;
        color: #fff;
    }


.control-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 0 0 20px 0; /* top padding removed for image */
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    display: block;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden; /* clip image rounding */
}

    .control-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    }

.control-thumbnail {
    width: 100%;
    height: 140px; /* top section height */
    object-fit: cover; /* fills the area nicely */
    border-top-left-radius: 14px; /* matches card rounding */
    border-top-right-radius: 14px;
    display: block;
    margin-bottom: 14px;
}

.control-card h4 {
    color: #0f172a;
    font-size: 17px;
    padding: 0;
}

.search-input {
    width: 100%;
    padding: 12px 48px 12px 24px; /* left padding for text, right padding for icon */
    border-radius: 50px; /* fully rounded */
    border: none;
    background-color: #f1f5f9; /* slate-100 shade */
    color: #0f172a; /* slate-900 for text */
    font-size: 16px;
    outline: none;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

    .search-input::placeholder {
        color: #64748b; /* slate-500 for placeholder */
    }

.search-icon {
    position: absolute;
    right: 18px;
    top: 55%;
    transform: translateY(-50%);
    color: #64748b; /* slate-500 */
    pointer-events: none; /* allow clicks to focus input */
    font-size: 16px;
}

.kt-prefix {
    color: #94a3b8; /* slate-400 for greyed-out */
    font-weight: 500;
}

.pricing-card {
    width: 320px;
    padding: 40px;
    text-align: center;
    box-shadow: #ddd 0 0 15px;
    border-radius: 24px; 
    color: hsla(0,100%,100%,.7);
}

a.primary {
    color: white;
    background: linear-gradient(135deg,orange,indigo);
}