.clock-card {
            border: 1px solid #ddd;
            border-radius: 15px;
            text-align: center;
            width: 100%;
            max-width: 375px;
            transition: transform 0.3s ease;
            box-sizing: border-box;
        }
/* Dua Section */
        .dua-container {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 5px;
            display: flex;
            flex-direction: column;
            min-height: 500px;
        }
        
        .dua-header {
            text-align: center;
            margin-bottom: 0px;
        }
        
        .dua-header h4 {
            color: #2575fc;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .buttons-container {
            display: flex;
            flex-direction: column;
            gap: 5px;
            flex: 1;
					background-color: #f7f8f9;
        }
        
        .btn {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            border-radius: 12px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .btn-icon {
            font-size: 20px;
            margin-right: 12px;
            width: 25px;
            text-align: center;
        }
        
        .btn-content {
            flex: 1;
        }
        
        .btn-english {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 3px;
        }
        
        .btn-urdu {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.3;
        }
        
        .btn-arrow {
            font-size: 16px;
            margin-left: 10px;
            opacity: 0.8;
        }
        
        /* Button Colors */
        .dua { background: linear-gradient(135deg, #06D6A0, #4CE4B6); }
        .calendar { background: linear-gradient(135deg, #073B4C, #0A5C7A); }
        .ziaret { background: linear-gradient(135deg, #2A9D8F, #4DB6AC); }
@media (max-width: 600px) {
	.btn {
                padding: 10px 12px;
            }
            
            .btn-english {
                font-size: 13px;
            }
            
            .btn-urdu {
                font-size: 13px;
            }
}