﻿body {
}

    .how-icon {
        font-size: 40px;
        background: #f8d7da;
        color: #dc3545;
        width: 80px;
        height: 80px;
        margin: auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .step-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: #dc3545;
        color: white;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    h2 {
        color: #dc3545;
    }
    .how-icon:hover {
        background: #dc3545;
        color: white;
        transform: scale(1.1);
        transition: 0.3s;
    }
    .navbar .nav-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
    transition: 0.3s;
}
    
 
       .type-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.type-box:hover {
    border-color: red;
}

.type-box.active {
    border: 2px solid red;
    background: #fff5f5;
}