.kalpana-services-section {
    padding: 40px 0;
}

.kalpana-services-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.kalpana-services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.kalpana-services-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.kalpana-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kalpana-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.card-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image-wrapper .badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 20px;
    color: white;
    font-weight: 600;
}

.kalpana-card .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.kalpana-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a202c;
}

.kalpana-card .card-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}
.kalpana-services-section .nice-select {
    display: none !important;
}
.card-actions {
    display: flex;
	justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.btn-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.btn-link:hover {
    color: #c0392b;
}

.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0f0f0;
    color: #333;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-brochure:hover {
    background: #e0e0e0;
    color: #000;
}

.form-select {
    max-width: 200px;
}

@media (max-width: 768px) {
    .kalpana-services-header h2 {
        font-size: 1.8rem;
    }
    .col-md-6.text-end {
        text-align: left !important;
        margin-top: 10px;
    }
}