* {
    padding: 0;
    margin: 0;
}

/* features  */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11), 0 24px 46px rgba(0, 123, 255, 0.1);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.icon-hover {
    transition: color 0.3s ease;
    z-index: 2;
}

.card:hover .icon-circle::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background-color: #e95353;
    /* subtle blue glow */
    z-index: 0;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.icon-circle::after {
    display: none !important;
}


/* product */
.hover-shadow:hover {
    box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* service */

.service-card {
    background-color: #fff;
    border: none;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e95353, #e97f7f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #e95353;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.3) rotate(8deg);
    color: #fff;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.service-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    transition: color 0.4s ease;
}

/* login */
html,
body {
    height: 100%;
    margin: 0;
}

.bg-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.bg-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(43, 42, 42, 0.6);
    z-index: 1;
}

.auth-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.781);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-toggle {
    cursor: pointer;
    color: #e95353;
}

.form-toggle:hover {
    text-decoration: underline;
}

.btn-col {
    background-color: #e95353;
    color: white;
    border: none;
}

.btn-col:hover,
.btn-col:focus,
.btn-col:active {
    background-color: #e95353;
    color: white;
    border: none;
    box-shadow: none;
}

.col-text {
    color: #e95353;
}