body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Dancing Script', cursive;
    color: #d63384;
}

.ask-karti {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(214, 51, 132, 0.3);
    transition: transform 0.3s ease;
}

    .ask-karti:hover {
        transform: translateY(-5px);
    }

.btn-ask {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
}

    .btn-ask:hover {
        background: linear-gradient(45deg, #ff8e8e, #ff6b6b);
        transform: scale(1.05);
        color: white;
    }

.form-control-ask {
    border: 2px solid #ffccd5;
    border-radius: 20px;
    padding: 15px;
    color: #d63384;
    background-color: #fff0f3;
}

    .form-control-ask:focus {
        border-color: #ff6b6b;
        box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
        background-color: white;
    }

.progress {
    height: 10px;
    border-radius: 10px;
    background-color: #ffe0e6;
}

.progress-bar {
    background: linear-gradient(90deg, #ff6b6b, #d63384);
    border-radius: 10px;
}

@keyframes kalpAtisi {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.kalp-ikonu {
    color: #ff4757;
    animation: kalpAtisi 1.5s infinite;
    margin-left: 5px;
}
