/* Header Gradient */
.header-section {
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 10px 30px rgba(255, 94, 98, 0.2);
}

/* Search Box */
.search-box {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Filter Buttons */
.btn-filter {
    border: 1px solid #ddd;
    border-radius: 20px;
    margin: 5px;
    padding: 8px 20px;
    background: white;
    color: #555;
    transition: all 0.3s;
}

.btn-filter:hover, .btn-filter.active {
    background: #ff5e62;
    color: white;
    border-color: #ff5e62;
}

/* ============================
   NEW LIST ITEM STYLING
   ============================ */

.link-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px; /* Spacing between rows */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-left: 5px solid #ff5e62; /* Left accent border */
    transition: transform 0.2s, box-shadow 0.2s;
}

.link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Icon Box on the Left */
.link-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #fff0f0;
    color: #ff5e62;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Hindi Text Styling */
.hindi-font {
    font-weight: 600;
    color: #d63384; /* Distinct pinkish color for Hindi */
}

/* The Visit Button */
.btn-visit {
    background-color: #212529;
    color: white;
    border-radius: 8px;
    padding: 8px 20px;
    white-space: nowrap; /* Prevents button text from breaking lines */
    transition: background 0.3s;
}

.btn-visit:hover {
    background-color: #ff5e62;
    color: white;
}

/* Animation */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-item {
    animation: slideIn 0.4s ease forwards;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .link-item .d-flex {
        flex-wrap: wrap;
    }
    .link-action {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 15px;
    }
    .btn-visit {
        width: 100%;
    }
}